How to get range of data types in c#?

c#

Solution

Please see this sample reference -->

UInt64.MinValue Field - Represents the smallest possible value of UInt64. This field is constant. MSDN Link - http://msdn.microsoft.com/en-us/library/system.uint64.minvalue.aspx

UInt64.MaxValue Field - Represents the largest possible value of UInt64. This field is constant. MSDN Link - http://msdn.microsoft.com/en-us/library/system.uint64.maxvalue.aspx

Problem

How to get range of data types in c sharp .net ? For example if I wish to get range of uint datatype, how can I get it through code ?

Original source