
I think there is a slight problem with case sensitive intelliprompt
Here is a snippetThe prompt works on "data" and makes "data.Value". I think it is wrong behavior since it creates compile errors. I would like to propose two other choices
1. The intellirompt is case sensitive, which means in my sample it will work only for "Data", but not for "data".
2. Make it working like in Visual Studio, where the intellipropmt automatically replaces the field with correct capitalization.
Thanks
Alex
Here is a snippet
class Foo
{
public int Value;
}
class Foo1
{
public Foo Data;
void Do()
{
data.Value
}
}
1. The intellirompt is case sensitive, which means in my sample it will work only for "Data", but not for "data".
2. Make it working like in Visual Studio, where the intellipropmt automatically replaces the field with correct capitalization.
Thanks
Alex