System.Globalization.CalendarArgumentType.cs

ylbtech-System.Globalization.CalendarArgumentType.cs

 

1. Back to top
1、
#regionassembler mscorlib, Version = 4.0.0.0, Culture = neutral, PublicKeyToken = b77a5c561934e089
 // C: \ Program Files (x86) \ Reference Assemblies \ Microsoft \ Framework \ .NETFramework \ v4.6.1 \ mscorlib.dll 
#endregion 

using System.Runtime.InteropServices; 

namespace System.Globalization 
{ 
    // 
    // Summary:
     //      Specify whether a calendar is a solar calendar, a lunar calendar, or a combination of the two. 
    [ComVisible ( true )]
     public  enum CalendarAlgorithmType 
    { 
        // 
        // Summary:
         //      Unknown calendar cardinality. 
        Unknown = 0 ,
         // 
        //Abstract:
         // The      solar calendar. 
        SolarCalendar = 1 ,
         // 
        // Summary:
         //      Lunar calendar. 
        LunarCalendar = 2 ,
         // 
        // Abstract:
         // Yin and Yang      calendar. 
        LunisolarCalendar = 3 
    } 
}
2、
2. Back to top
 
3. Back to top
 
4. Back to top
 
5. Back to top
 
 
6. Back to top
 
warn Author: ylbtech
Source: http://ylbtech.cnblogs.com/
This article belongs to the author and blog Park total, welcome to reprint, but without the author's consent declared by this section must be retained, and given the original connection in the apparent position of the article page, otherwise Reserves the right to pursue legal responsibility.

Guess you like

Origin www.cnblogs.com/storebook/p/12677106.html