namespace Resharper.Bugs
{
public struct GenerateConstructorDialogNotWorkingForStruct
{
// Trying to do Generate Constructor here brings up the dialog,
// but the Finish button never gets enabled.
// Changing from 'struct' to 'class' makes it work
publicint Data { get; private set; }
}
}
Description
namespace Resharper.Bugs
{
public struct GenerateConstructorDialogNotWorkingForStruct
{
// Trying to do Generate Constructor here brings up the dialog,
// but the Finish button never gets enabled.
// Changing from 'struct' to 'class' makes it work
publicint Data { get; private set; }
}
}