wyrd
Well-known member
Okay.. heh.. Ive been programming like this for 5 years;
if (something) {
stuff..
}
Notice where the { } are? .NET auto formats it to..
if (something)
{
stuff..
}
Ive always hated that because it just.. I dont know.. I hate looking at lines with a single { on it. Just, argh n stuff. Is there ANY way to make the .NET IDE not format my darn { }? Heh.
While Im at it, I heard about a new .NET update coming out soon and part of it will boost the intellisense in C#. Does that include adding events available to the drop downs? One huge difference Ive noticed is that in VB.NET you can sift through all of the events available for the selected object (talking about the code window here, the two drop downs at the top) and itll write in the code for you when you select the event. Either Im missing something, or C# just doesnt allow that and you need to add delegates to the events yourself and point it to whatever function you want to handle the event. On an oddball note, however, it does auto code the Click events for you. Not really an annoyance thing (Im used to coding out events in Java), but more or less just curious.
if (something) {
stuff..
}
Notice where the { } are? .NET auto formats it to..
if (something)
{
stuff..
}
Ive always hated that because it just.. I dont know.. I hate looking at lines with a single { on it. Just, argh n stuff. Is there ANY way to make the .NET IDE not format my darn { }? Heh.
While Im at it, I heard about a new .NET update coming out soon and part of it will boost the intellisense in C#. Does that include adding events available to the drop downs? One huge difference Ive noticed is that in VB.NET you can sift through all of the events available for the selected object (talking about the code window here, the two drop downs at the top) and itll write in the code for you when you select the event. Either Im missing something, or C# just doesnt allow that and you need to add delegates to the events yourself and point it to whatever function you want to handle the event. On an oddball note, however, it does auto code the Click events for you. Not really an annoyance thing (Im used to coding out events in Java), but more or less just curious.