17 references to ConvertFromString
PresentationBuildTasks (3)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (1)
1812
value = converter.
ConvertFromString
(ctx, TypeConverterHelper.InvariantEnglishUS, attributeValue);
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\BamlRecords.cs (1)
2551
object convertedValue = boolConverter.
ConvertFromString
(TypeContext, TypeConverterHelper.InvariantEnglishUS, Value);
src\Microsoft.DotNet.Wpf\src\PresentationFramework\System\Windows\Markup\ParserContext.cs (1)
439
xmlSpace = (System.Xml.XmlSpace)typeConverter.
ConvertFromString
(null, TypeConverterHelper.InvariantEnglishUS, parserContext.XmlSpace);
PresentationFramework (6)
MS\Internal\Data\PropertyPathWorker.cs (1)
1411
arg = tc.
ConvertFromString
(null, TypeConverterHelper.InvariantEnglishUS,
System\Windows\Markup\BamlRecordReader.cs (1)
1630
convertedParam = converter.
ConvertFromString
(TypeConvertContext,
System\Windows\Markup\BamlRecords.cs (1)
2551
object convertedValue = boolConverter.
ConvertFromString
(TypeContext, TypeConverterHelper.InvariantEnglishUS, Value);
System\Windows\Markup\ParserContext.cs (1)
439
xmlSpace = (System.Xml.XmlSpace)typeConverter.
ConvertFromString
(null, TypeConverterHelper.InvariantEnglishUS, parserContext.XmlSpace);
System\Windows\Markup\XamlTypeMapper.cs (1)
563
obj = typeConvert.
ConvertFromString
(typeContext, TypeConverterHelper.InvariantEnglishUS, value);
System\Windows\PropertyPath.cs (1)
800
value = tc.
ConvertFromString
(null, CultureInfo.InvariantCulture,
System.ComponentModel.TypeConverter (6)
System\ComponentModel\TypeConverter.cs (2)
68
return
ConvertFromString
(null, CultureInfo.InvariantCulture, text);
76
return
ConvertFromString
(context, CultureInfo.InvariantCulture, text);
System\Drawing\PointConverter.cs (1)
45
values[i] = (int)intConverter.
ConvertFromString
(context, culture, tokens[i])!;
System\Drawing\RectangleConverter.cs (1)
45
values[i] = (int)intConverter.
ConvertFromString
(context, culture, tokens[i])!;
System\Drawing\SizeConverter.cs (1)
45
values[i] = (int)intConverter.
ConvertFromString
(context, culture, tokens[i])!;
System\Drawing\SizeFConverter.cs (1)
44
values[i] = (float)floatConverter.
ConvertFromString
(context, culture, tokens[i])!;
System.Windows.Forms.Analyzers.CSharp (1)
System\Windows\Forms\CSharp\Generators\ApplicationConfiguration\ProjectFileReader.FontConverter.cs (1)
76
fontSize = (float)TypeDescriptor.GetConverter(typeof(float)).
ConvertFromString
(null, s_culture, unitTokens.size);
System.Windows.Forms.Primitives (1)
System\ComponentModel\TypeConverterHelper.cs (1)
55
output[i] = (T)converter.
ConvertFromString
(context, culture, text[tokens[i]].ToString())!;