Daily Tips- Tip #41 -What is the short-cut for uncommenting code ?

Monday, December 14, 2009


Ctrl + K, Ctrl + U


www.codecollege.NET

Daily Tips- Tip #40 -What is the Short-cut for commenting out the code?


Ctrl + K, Ctrl + C


www.codecollege.NET

What is the expansion of CAO?

Sunday, December 13, 2009


Client-Activated Objects.


www.codecollege.NET

Daily Tips- Tip #39 - How will you beging a running a standard application message loop on the current thread?

Friday, December 11, 2009


Application.Run(new Form1());


www.codecollege.NET

Daily Tips- Tip #38 - What is the method in MS Exception Management Application Block which is used to publish exceptions?


ExceptionManager.Publish(ex);


www.codecollege.NET

Is it true that objects don't always get destroyed immediately when the last reference goes away?


Yes. The garbage collector offers no guarantees about the time when an object will be destroyed and its memory reclaimed.


www.codecollege.NET

Daily Tips- Tip #37 - What is the best way to check for a null and an empty value in a string?


string mystr;
if (String.IsNullOrEmpty(mystr))


www.codecollege.NET
Blog Widget by LinkWithin