I'm a VB.net programmer, and I'm about to start working
with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's
similar enough to VB.net that I can read and write it, and
it's what's most familiar to them.
My major problem with C#, however, is its case-
sensitivity. I've heard people talk about how wonderful
it is until they're blue in the face, but the fact stands
that I'm lazy, and I guess so many years of VB has
accustomed me to not having to type anything but
declarations in capital letters.
So my question is: is there a tool or macro for C# that
will eliminate its case-sensitivity? I googled all sorts
of phrases, but all to no avail...
Thanks,
-Starwiz 16 2787
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb im Newsbeitrag
news:20*****************************@phx.gbl... So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Short answer: Shift-Space (Code-Completion) ist a really great (and cheap)
tool ;-)
Jürgen Beck
MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb im Newsbeitrag
news:20*****************************@phx.gbl... So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Short answer: Shift-Space (Code-Completion) ist a really great (and cheap)
tool ;-)
Jürgen Beck
MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
I don't think such a thing could work safely in most instances b/c by C#'s
very nature, it's case sensitive and the next time you opened a project in
VS.NET where the programmer used for example, lowercase for private class
variables and uppercase for Properties, it'd give you some serious
headaches. You could write an add-in to do it as you typed , but making
something like that commercially would be a lot of trouble b/c of the way
many programmers in C languages use case sensitivity to their advantage.
This probably isn't that helpful to your problem, but you may find it
interesting ... http://www.gotdotnet.com/team/csharp.../ask.aspx#case
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
I don't think such a thing could work safely in most instances b/c by C#'s
very nature, it's case sensitive and the next time you opened a project in
VS.NET where the programmer used for example, lowercase for private class
variables and uppercase for Properties, it'd give you some serious
headaches. You could write an add-in to do it as you typed , but making
something like that commercially would be a lot of trouble b/c of the way
many programmers in C languages use case sensitivity to their advantage.
This probably isn't that helpful to your problem, but you may find it
interesting ... http://www.gotdotnet.com/team/csharp.../ask.aspx#case
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
>Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap) tool ;-)
Absolutely, but it doesn't work until you've typed the
first word of the statement, whatever it is. It's that
first word that's the biggest problem; after I type System
with a capital S, I can get to whatever I need...it's just
remembering to that fools me. :)
-----Original Message----- "Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb
im Newsbeitragnews:20*****************************@phx.gbl... So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all
sorts of phrases, but all to no avail... Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap)tool ;-)
Jürgen Beck MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
.
>Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap) tool ;-)
Absolutely, but it doesn't work until you've typed the
first word of the statement, whatever it is. It's that
first word that's the biggest problem; after I type System
with a capital S, I can get to whatever I need...it's just
remembering to that fools me. :)
-----Original Message----- "Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb
im Newsbeitragnews:20*****************************@phx.gbl... So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all
sorts of phrases, but all to no avail... Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap)tool ;-)
Jürgen Beck MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
.
That's exactly what I was looking for.
Now, why didn't they have an _option_ for fixing case in
the language to begin with? lol...keep the C developers
happy, and make more VB converts...oh well. -----Original Message----- Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in
messagenews:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it,
and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact
stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all
sorts of phrases, but all to no avail...
Thanks, -Starwiz
.
That's exactly what I was looking for.
Now, why didn't they have an _option_ for fixing case in
the language to begin with? lol...keep the C developers
happy, and make more VB converts...oh well. -----Original Message----- Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in
messagenews:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it,
and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact
stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all
sorts of phrases, but all to no avail...
Thanks, -Starwiz
.
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:12****************************@phx.gbl... That's exactly what I was looking for.
Now, why didn't they have an _option_ for fixing case in the language to begin with? lol...keep the C developers happy, and make more VB converts...oh well.
Why not make an option for VB to be case senstive as well?
The main problem is it confuses people and breaks code. If someone expects
case senstivity and writes case senstive code, and then someone who expects
case insenstivity works on it...exactly what would happen? -----Original Message----- Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in messagenews:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
.
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in message
news:12****************************@phx.gbl... That's exactly what I was looking for.
Now, why didn't they have an _option_ for fixing case in the language to begin with? lol...keep the C developers happy, and make more VB converts...oh well.
Why not make an option for VB to be case senstive as well?
The main problem is it confuses people and breaks code. If someone expects
case senstivity and writes case senstive code, and then someone who expects
case insenstivity works on it...exactly what would happen? -----Original Message----- Take a look at this - www.wholetomato.com
Tim
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> wrote in messagenews:20*****************************@phx.gbl... I'm a VB.net programmer, and I'm about to start working with two C++ programmers and teach them .net.
I've decided to use C# in teaching them, since it's similar enough to VB.net that I can read and write it, and it's what's most familiar to them.
My major problem with C#, however, is its case- sensitivity. I've heard people talk about how wonderful it is until they're blue in the face, but the fact stands that I'm lazy, and I guess so many years of VB has accustomed me to not having to type anything but declarations in capital letters.
So my question is: is there a tool or macro for C# that will eliminate its case-sensitivity? I googled all sorts of phrases, but all to no avail...
Thanks, -Starwiz
.
Hello Starwiz,
you also can type "sys" in Visual Studio .NET 2003. I don't remember the
behavior in Version 2002.
Jürgen Beck
MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb im Newsbeitrag
news:09****************************@phx.gbl... Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap)tool ;-)
Absolutely, but it doesn't work until you've typed the
first word of the statement, whatever it is. It's that
first word that's the biggest problem; after I type System
with a capital S, I can get to whatever I need...it's just
remembering to that fools me. :)
Hello Starwiz,
you also can type "sys" in Visual Studio .NET 2003. I don't remember the
behavior in Version 2002.
Jürgen Beck
MCSD.NET, MCDBA, MCT www.Juergen-Beck.de
"Starwiz" <we*******@REMOVEransomlatin.comTHIS> schrieb im Newsbeitrag
news:09****************************@phx.gbl... Short answer: Shift-Space (Code-Completion) ist a really
great (and cheap)tool ;-)
Absolutely, but it doesn't work until you've typed the
first word of the statement, whatever it is. It's that
first word that's the biggest problem; after I type System
with a capital S, I can get to whatever I need...it's just
remembering to that fools me. :) This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: Edward K. Ream |
last post by:
I would like to say a few (actually more than a few) words here about some
recent discoveries I have made concerning the interaction of Leo and...
|
by: Code4u |
last post by:
We have a mature project that suffers long build times because many
modules pull in far more than they need. In the long term I would like
to...
|
by: Mariame |
last post by:
Hi Everyone,
Is There a way to eliminate upper case, so the user could only write Lower
Case or to transfer the Upper Case String to lower case in...
|
by: clintonG |
last post by:
I'm using an .aspx tool I found at but as nice as the interface is I
think I need to consider using others. Some can generate C# I understand....
|
by: Al |
last post by:
Is there a commercially available tool that converts VB.NET code to C#?
I have a console app and a web app in VB.NET that I'd like to convert to...
|
by: Durumdara |
last post by:
Hi !
I have a problem.
I have a little tool that can get data about filesystems and wrote it in
python.
The main user asked me a GUI for this...
|
by: kazak |
last post by:
Hello,
I am looking for C code analysing tool,
My problem is:
To discover the portion of code that depends on(deals with) a number
of specified...
|
by: TonyJ |
last post by:
Hello!!
Is it anyone that have some experience using a good case tool that support
C# design in using UML.
For example reverse engineering.
I...
|
by: Anastasios Hatzis |
last post by:
I'm looking for a pattern where different client implementations can use the
same commands of some fictive tool ("foo") by accessing some kind of...
|
by: =?Utf-8?B?SGVyYg==?= |
last post by:
Can I use the Website Administration tool to manage users and roles for
multiple ASP.NET applications using a single, common ASPNETDB?
If so,...
|
by: better678 |
last post by:
Question:
Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct?
Answer:
Java is an object-oriented...
|
by: teenabhardwaj |
last post by:
How would one discover a valid source for learning news, comfort, and help for engineering designs? Covering through piles of books takes a lot of...
|
by: CD Tom |
last post by:
This only shows up in access runtime. When a user select a report from my report menu when they close the report they get a menu I've called Add-ins...
|
by: Naresh1 |
last post by:
What is WebLogic Admin Training?
WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
|
by: jalbright99669 |
last post by:
Am having a bit of a time with URL Rewrite. I need to incorporate http to https redirect with a reverse proxy. I have the URL Rewrite rules made...
|
by: antdb |
last post by:
Ⅰ. Advantage of AntDB: hyper-convergence + streaming processing engine
In the overall architecture, a new "hyper-convergence" concept was...
|
by: Matthew3360 |
last post by:
Hi there. I have been struggling to find out how to use a variable as my location in my header redirect function.
Here is my code.
...
|
by: Matthew3360 |
last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
|
by: AndyPSV |
last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
| |