|
Cet article a fait l'objet d'une traduction automatique. Déplacez votre pointeur sur les phrases de l'article pour voir la version originale de ce texte. Informations supplémentaires.
|
Traduction
Source
|
NumberFormatInfo.CurrentInfo, propriété
Espace de noms : System.Globalization
Assembly : mscorlib (dans mscorlib.dll)
Valeur de propriété
Type : System.Globalization.NumberFormatInfo
using System; using System.Collections; using System.Globalization; using System.Reflection; public class Example : IComparer { public static void Main() { NumberFormatInfo nfi1 = NumberFormatInfo.CurrentInfo; NumberFormatInfo nfi2 = CultureInfo.CurrentCulture.NumberFormat; Console.WriteLine("Objects equal: {0}", nfi1.Equals(nfi2)); Console.WriteLine("Equal references: {0}\n", Object.ReferenceEquals(nfi1, nfi2)); PropertyInfo[] props = nfi1.GetType().GetProperties(BindingFlags.Instance | BindingFlags.Public); Array.Sort(props, new Example()); Console.WriteLine("Properties of NumberFormat.CurrentInfo object:"); foreach (var prop in props) { if (prop.PropertyType.IsArray) { Array arr = prop.GetValue(nfi1) as Array; Console.Write(String.Format(" {0}: ", prop.Name) + "{ "); int ctr = 0; foreach (var item in arr) { Console.Write("{0}{1}", item, ctr == arr.Length - 1 ?" }" : ", "); ctr++; } Console.WriteLine(); } else { Console.WriteLine(" {0}: {1}", prop.Name, prop.GetValue(nfi1)); } } } public int Compare(Object x, Object y) { if (x == null && y == null) return 0; PropertyInfo px = x as PropertyInfo; if (px == null) return -1; PropertyInfo py = y as PropertyInfo; if (py == null) return 1; return String.Compare(px.Name, py.Name); } } // The example displays the following output: // Objects equal: True // Equal references: True // // Properties of NumberFormat.CurrentInfo object: // CurrencyDecimalDigits: 2 // CurrencyDecimalSeparator: . // CurrencyGroupSeparator: , // CurrencyGroupSizes: { 3 } // CurrencyNegativePattern: 0 // CurrencyPositivePattern: 0 // CurrencySymbol: $ // DigitSubstitution: None // IsReadOnly: True // NaNSymbol: NaN // NativeDigits: { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 } // NegativeInfinitySymbol: -Infinity // NegativeSign: - // NumberDecimalDigits: 2 // NumberDecimalSeparator: . // NumberGroupSeparator: , // NumberGroupSizes: { 3 } // NumberNegativePattern: 1 // PercentDecimalDigits: 2 // PercentDecimalSeparator: . // PercentGroupSeparator: , // PercentGroupSizes: { 3 } // PercentNegativePattern: 0 // PercentPositivePattern: 0 // PercentSymbol: % // PerMilleSymbol: % // PositiveInfinitySymbol: Infinity // PositiveSign: +
Windows 8, Windows Server 2012, Windows 7, Windows Vista SP2, Windows Server 2008 (rôle principal du serveur non pris en charge), Windows Server 2008 R2 (rôle principal du serveur pris en charge avec SP1 ou version ultérieure ; Itanium non pris en charge)
Le .NET Framework ne prend pas en charge toutes les versions de chaque plateforme. Pour obtenir la liste des versions prises en charge, consultez Configuration requise du .NET Framework.