The code college
Friday, December 11, 2009
Daily Tips- Tip #36 - How will you beging a running a standard application message loop on the current thread?
Application.Run(new Form1());
www.codecollege.NET
Daily Tips- Tip #35 - 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 #34 - 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
‹
›
Home
View web version