Posted 18 years ago
by Jake Pearson
-
Software Developer,
Alion Science and Technology
Version: 4.0.0253
Platform: .NET 2.0
Environment: Windows Vista (32-bit)
Hi,
Today, someone here noticed that, at least in the sample below, the syntax editor is case insensitive when it shouldn't be. I added the code below to your SDI sample application. Take a look at the constructor of "ClassA". I typed in CLassB incorrectly, but the intelliprompt will still display if you type in "CLassB.".
thanks,
Jake[Modified at 06/25/2007 11:10 AM]
[Modified at 06/25/2007 11:10 AM]
Today, someone here noticed that, at least in the sample below, the syntax editor is case insensitive when it shouldn't be. I added the code below to your SDI sample application. Take a look at the constructor of "ClassA". I typed in CLassB incorrectly, but the intelliprompt will still display if you type in "CLassB.".
thanks,
Jake
namespace Test
{
public class ClassA
{
ClassB ClassB;
public ClassA()
{
CLassB.A;
}
}
public class ClassB
{
public int A;
}
}
[Modified at 06/25/2007 11:10 AM]