So. I've started learning basic programming, using special site which gives you video courses.
I've got my Visual Studio 2013 (Update 3), from special site for children of our school.
Now, everything went fine, until I had to meet "if" statements in C#.
Curly brackets are finished just fine, and you may think I'm histerical but, man, I really hate the way it does it, for example, it does:
if (ourValue == 50)
{
Console.WriteLine("ourValue is indeed equal to 50");
}
But I'm fan of always doing:
if (ourValue == 50) {
Console.WriteLine("ourValue is indeed equal to 50");
}
And I know it's stupid for yanking like a 'lil kid "I don't like this way cry", but I feel cold chill through my spine whenever I see Visual Studio correcting me that way, I just can't stand that I can't automatically write the code, in my style and I have to force myself to write code in other format than I'm used to.
Is there a way to change it? Not turn it off, change it.