Hi,
If you look at method
private void NormalizePercentStyle(bool normalizeRow);
from type "
System.Windows.Forms.Design.StyleCollectionEditor+StyleEditorForm, System.Design" with C# language selected you will see the following piece of code:
float num2 = 0f;
[...]
switch (num2)
{
case 100f:
case 0f:
return;
}
throws a compilation error since float values are not valid for switch statements.
I check previous version an the problem is also present.
If you look at method private void NormalizePercentStyle(bool normalizeRow);
from type "System.Windows.Forms.Design.StyleCollectionEditor+StyleEditorForm, System.Design" with C# language selected you will see the following piece of code:
throws a compilation error since float values are not valid for switch statements.
I check previous version an the problem is also present.