28 references to ConvertToInvariantString
Microsoft.Maui.Controls (4)
ColumnDefinitionCollectionTypeConverter.cs (1)
43 return string.Join(", ", cdc.Select(cd => converter.ConvertToInvariantString(cd.Width)));
RowDefinitionCollectionTypeConverter.cs (1)
42 return string.Join(", ", rdc.Select(rd => converter.ConvertToInvariantString(rd.Height)));
Shapes\PointCollectionConverter.cs (1)
67 return string.Join(", ", pc.Select(p => converter.ConvertToInvariantString(p)));
Shapes\TransformTypeConverter.cs (1)
28 return converter.ConvertToInvariantString(mt.Matrix);
PresentationBuildTasks (7)
MS\Internal\MarkupCompiler\MarkupCompiler.cs (7)
1662_private = converter.ConvertToInvariantString(MemberAttributes.Private).ToLowerInvariant(); 1663_public = converter.ConvertToInvariantString(MemberAttributes.Public).ToLowerInvariant(); 1664_protected = converter.ConvertToInvariantString(MemberAttributes.Family).ToLowerInvariant(); 1665_internal = converter.ConvertToInvariantString(MemberAttributes.Assembly).ToLowerInvariant(); 1666_protectedInternal = converter.ConvertToInvariantString(MemberAttributes.FamilyOrAssembly).ToLowerInvariant(); 1730_privateClass = converter.ConvertToInvariantString(TypeAttributes.NotPublic).ToLowerInvariant(); 1731_publicClass = converter.ConvertToInvariantString(TypeAttributes.Public).ToLowerInvariant();
PresentationCore (3)
System\Windows\Input\Command\KeyGestureValueSerializer.cs (1)
76return converter.ConvertToInvariantString(value);
System\Windows\Input\Command\MouseActionValueSerializer.cs (1)
69return converter.ConvertToInvariantString(value);
System\Windows\Input\Command\MouseGestureValueSerializer.cs (1)
81return converter.ConvertToInvariantString(value);
PresentationFramework (1)
System\Windows\Annotations\AnnotationHelper.cs (1)
1027colorsElement.SetAttribute(HighlightComponent.BackgroundAttributeName, converter.ConvertToInvariantString(color.Value));
ReachFramework (6)
Serialization\Manager\ReachDocumentPageSerializer.cs (1)
198writer.WriteAttributeString(name, TypeDescriptor.GetConverter(value).ConvertToInvariantString(value));
Serialization\Manager\ReachDocumentPageSerializerAsync.cs (1)
282writer.WriteAttributeString(name, TypeDescriptor.GetConverter(value).ConvertToInvariantString(value));
Serialization\Manager\ReachSerializationUtils.cs (3)
609TypeDescriptor.GetConverter(size.Width).ConvertToInvariantString(size.Width)); 611TypeDescriptor.GetConverter(size.Height).ConvertToInvariantString(size.Height)); 1012writer.WriteAttributeString(name, TypeDescriptor.GetConverter(value).ConvertToInvariantString(value));
Serialization\Manager\XpsOMDocumentPageSerializer.cs (1)
229writer.WriteAttributeString(name, TypeDescriptor.GetConverter(value).ConvertToInvariantString(value));
System.Configuration.ConfigurationManager (3)
System\Configuration\ConfigurationProperty.cs (1)
358return Converter.ConvertToInvariantString(value);
System\Configuration\InfiniteTimeSpanConverter.cs (1)
19: s_timeSpanConverter.ConvertToInvariantString(value);
System\Configuration\SettingsPropertyValue.cs (1)
263return converter.ConvertToInvariantString(propertyValue);
System.Windows.Forms (4)
System\Resources\ResXDataNode.cs (1)
254nodeInfo.ValueData = converter.ConvertToInvariantString(value) ?? string.Empty;
System\Windows\Forms\ActiveX\Control.ActiveXImpl.cs (1)
1557value = converter.ConvertToInvariantString(currentProperty.GetValue(_control));
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\MergePropertyDescriptor.cs (1)
161string stringRepresentation = converter.ConvertToInvariantString(value)!;
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettings.cs (1)
481string? stringVal = converter.ConvertToInvariantString(this);