Posted 17 years ago by Jake Pearson - Software Developer, Alion Science and Technology
Version: 4.0.0253
Platform: .NET 2.0
Environment: Windows Vista (32-bit)
Avatar
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
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]

[Modified at 06/25/2007 11:10 AM]

Comments (2)

Posted 17 years ago by Actipro Software Support - Cleveland, OH, USA
Avatar
Thanks C# will be made to be truly case sensitive in the next maintenance release. It appears we had an option flipped wrong in our code that was allowing for the behavior you mentioned.


Actipro Software Support

Posted 17 years ago by Jake Pearson - Software Developer, Alion Science and Technology
Avatar
Thanks.
The latest build of this product (v24.1.0) was released 2 months ago, which was after the last post in this thread.

Add Comment

Please log in to a validated account to post comments.