Is it possible to tell VB.NET to reconize case sensitive variables and method names?
VALID IN C#
-------------
private bool canSelect;
public bool CanSelect
{
....
}
INVALID in VB.NET
------------------
private canSelect as Boolean
public property CanSelect as Boolean
.....
end property
? Is there any property that I can set to make VB.NET recognize and acknoledge case sensitive variables as being different?
Thanks in advance.
VALID IN C#
-------------
private bool canSelect;
public bool CanSelect
{
....
}
INVALID in VB.NET
------------------
private canSelect as Boolean
public property CanSelect as Boolean
.....
end property
? Is there any property that I can set to make VB.NET recognize and acknoledge case sensitive variables as being different?
Thanks in advance.