January 2011 - Posts

1
Comments

Very detailed chapter on Garbage Collection by nmarun

I recently read one of the most detailed chapters on GC in the book Professional C# 4 and .NET 4   - Christian Nagel, Bill Evjen, Jay Glynn, Karli Watson, Morgan Skinner I also did find the other chapters in Part I of the book to be refreshing (even...
Filed under: ,
2
Comments

Get and Set property accessors are ‘actually’ methods by nmarun

Well, they are ‘special’ methods, but they indeed are methods. See the class below: 1: public class Person 2: { 3: private string _name; 4:   5: public string Name 6: { 7: get 8: { 9: return _name; 10: } 11: set 12: { 13: if ( value == "aaa"...
Filed under: ,
1
Comments

Top 10 posts of 2010 by nmarun

I quote one of my professors when I say: “We Share – We Improve”. It is through blogging that I’ve learned quite a bit. The ‘R&D’ done to learn and perfect a technology and the comments by other experts adds towards skill-set building. Below are some...
More Posts