Page 1 of 1
Make VB.NET case sensitive...?
Posted: Sat Sep 24, 2011 1:32 am
by Cheatmasterbw
I know in C#/C++ the variables "SS", and "Ss" would be different variables due to the character casing. Is there a way in VB to declare variables with the same letters, but different cases?
Re: Make VB.NET case sensitive...?
Posted: Sat Sep 24, 2011 8:36 am
by MrAksel
No. Just a simple no.
Edit: it might work if you find a VB coding program that translates to C# first before compiling :P
Re: Make VB.NET case sensitive...?
Posted: Sat Sep 24, 2011 9:12 am
by Axel
MrAksel wrote:No. Just a simple no.
Edit: it might work if you find a VB coding program that translates to C# first before compiling :P
Or just convert to
CIL which a C# compiler does
Re: Make VB.NET case sensitive...?
Posted: Sat Sep 24, 2011 9:19 am
by MrAksel
Axel wrote:MrAksel wrote:No. Just a simple no.
Edit: it might work if you find a VB coding program that translates to C# first before compiling :P
Or just convert to CIL which a C# compiler does
VB does that too. It might work with a modified version of the compiler.
Re: Make VB.NET case sensitive...?
Posted: Sat Sep 24, 2011 9:25 am
by Axel
MrAksel wrote:Axel wrote:MrAksel wrote:No. Just a simple no.
Edit: it might work if you find a VB coding program that translates to C# first before compiling :P
Or just convert to CIL which a C# compiler does
VB does that too. It might work with a modified version of the compiler.
So as I said theres no reason to convert it to C# before compiling