24 references to InvariantEnglishUS
System.Xaml (24)
ms\Internal\Markup\TypeConverterValueSerializer.cs (2)
32return converter.ConvertToString(context, TypeConverterHelper.InvariantEnglishUS, value); 44return converter.ConvertFrom(context, TypeConverterHelper.InvariantEnglishUS, value);
src\Microsoft.DotNet.Wpf\src\Shared\MS\Internal\SafeSecurityHelper.cs (1)
150if ( (String.Compare(curAsmName.Name, assemblyName.Name, true, TypeConverterHelper.InvariantEnglishUS) == 0) &&
src\Microsoft.DotNet.Wpf\src\Shared\System\Windows\Markup\TypeConverterHelper.cs (1)
468InvariantEnglishUS) as TypeConverter;
System\Windows\Markup\DateTimeValueSerializer.cs (2)
55DateTimeFormatInfo dateTimeFormatInfo = (DateTimeFormatInfo)TypeConverterHelper.InvariantEnglishUS.GetFormat(typeof(DateTimeFormatInfo))!; 111return dateTime.ToString(formatString.ToString(), TypeConverterHelper.InvariantEnglishUS);
System\Xaml\InfosetObjects\XamlNodes.cs (1)
118string str = String.Format(TypeConverterHelper.InvariantEnglishUS, "{0}: ", NodeType);
System\Xaml\InfosetObjects\XamlObjectWriter.cs (3)
1152string errMsg = string.Format(TypeConverterHelper.InvariantEnglishUS, SR.InvalidExpression, factoryMethodName); 1221string msg = string.Format(TypeConverterHelper.InvariantEnglishUS, SR.NoSuchConstructor, rawArgs.Count, meType.Name); 1356TypeConverterHelper.InvariantEnglishUS,
System\Xaml\MS\Impl\KnownStrings.cs (1)
100return string.Format(TypeConverterHelper.InvariantEnglishUS, formatString, otherArgs);
System\Xaml\Parser\NodeStreamSorter.cs (1)
89return String.Format(TypeConverterHelper.InvariantEnglishUS, "Depth[{0}] {1}", Depth, XamlNodeType);
System\Xaml\Parser\XamlText.cs (1)
59if (text.StartsWith(ME_ESCAPE, false, TypeConverterHelper.InvariantEnglishUS))
System\Xaml\Replacements\TypeListConverter.cs (1)
31types[i] = (Type)s_typeTypeConverter.ConvertFrom(context, TypeConverterHelper.InvariantEnglishUS, tl[i]);
System\Xaml\Runtime\ClrObjectRuntime.cs (3)
223return (T)converter.ConvertTo(context, TypeConverterHelper.InvariantEnglishUS, instance, typeof(T)); 637obj = typeConverter.ConvertFrom(serviceContext, TypeConverterHelper.InvariantEnglishUS, value); 643obj = typeConverter.ConvertFrom(serviceContext, TypeConverterHelper.InvariantEnglishUS, value);
System\Xaml\Schema\ClrNamespaceUriParser.cs (1)
15return string.Format(TypeConverterHelper.InvariantEnglishUS, KnownStrings.UriClrNamespace + ":{0};" +
System\Xaml\XamlObjectReader.cs (2)
2563return string.Compare(y.Value, x.Value, false, TypeConverterHelper.InvariantEnglishUS); 2613prefix = basePrefix + index.ToString(TypeConverterHelper.InvariantEnglishUS);
System\Xaml\XamlSchemaContext.cs (1)
182sb.Append(Char.ToLower(segment[0], TypeConverterHelper.InvariantEnglishUS));
System\Xaml\XamlXmlWriter.cs (3)
476prefix = basePrefix + index.ToString(TypeConverterHelper.InvariantEnglishUS); 662if (type.IsMarkupExtension && type.Name.EndsWith("Extension", false, TypeConverterHelper.InvariantEnglishUS)) 765return string.Compare(x.Key, y.Key, false, TypeConverterHelper.InvariantEnglishUS);