lamp

Browse by Tags

Sorry, but there are no more tags available to filter with.
Use internal instead of public
04 January 10 07:42 AM | Frederick.Chapleau | with no comments
For production product, usage of public should be only used for publicly accessible methods, because all public methods can be used by other assembly/application than yours. -f.
Filed under:
Implementing IComparable
24 April 09 11:54 AM | Frederick.Chapleau | with no comments
Often, it is useful to compare object instances between them. The comparison is useful for many things and the most basic one is to sort them. .NET provide a mechanism to handle it, that is the implementation of IComparable. In .NET 2.0, there is an generic...
Filed under: