TaiwanCalendar.AlgorithmType Property
.NET Framework 2.0
Note: This property is new in the .NET Framework version 2.0.
Gets a value that indicates whether the current calendar is solar-based, lunar-based, or a combination of both.
Namespace: System.Globalization
Assembly: mscorlib (in mscorlib.dll)
Assembly: mscorlib (in mscorlib.dll)
/** @property */ public CalendarAlgorithmType get_AlgorithmType ()
public override function get AlgorithmType () : CalendarAlgorithmType
Property Value
Always returns the SolarCalendar value.The following code example demonstrates the AlgorithmType property and the CalendarAlgorithmType enumeration.
// This example demonstrates the Calendar.AlgorithmType property and // CalendarAlgorithmType enumeration. using System; using System.Globalization; class Sample { public static void Main() { GregorianCalendar grCal = new GregorianCalendar(); HijriCalendar hiCal = new HijriCalendar(); JapaneseLunisolarCalendar jaCal = new JapaneseLunisolarCalendar(); Display(grCal); Display(hiCal); Display(jaCal); } static void Display(Calendar c) { string name = c.ToString().PadRight(50, '.'); Console.WriteLine("{0} {1}", name, c.AlgorithmType); } } /* This code example produces the following results: System.Globalization.GregorianCalendar............ SolarCalendar System.Globalization.HijriCalendar................ LunarCalendar System.Globalization.JapaneseLunisolarCalendar.... LunisolarCalendar */
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.