donderdag, augustus 17, 2006

 

Understanding implicit operator overloading in C#

Nice aticle about overloading operators in C#

Everyone knows that in dotnet byte, char, int, long etc are value data type and string is a reference data type. Even though being a reference type string behaves much like a value type. In other word, It can directly accepts values and doesn't require new to create an instance. For example...

Read more...