C# Date/Time Formatting
      using System.Globalization
            public DateTimeFormatInfo(); 
            
			Internationalization (I18n) Class Overview
            The DateTimeFormatInfo class contains information that defines how 
              DateTime
              values are formatted and displayed. 
             
             See Microsoft's 
			MSDN online documentation for more information. 
            
            I18n Issues
            
              Using the DateTimeFormatInfo constructor directly in your
              application will create formatting information for the invariant culture only, which
              is English without a country or region designation. 
             
            Recommended Replacements
            Use the DateTimeFormatInfo.CurrentInfo property to create a DateTimeFormatInfo 
              object for the culture of the current thread. To create a DateTimeFormatInfo 
              object for a specific culture, create a CultureInfo object and 
              then retrieve the CultureInfo.DateTimeFormat property.
             
             
               
               General C# date/time formatting information 
              
            
                      
  
 |