- context
An System.ComponentModel.ITypeDescriptorContext object that provides a format context that can be used to extract additional information about the environment from which this converter is invoked. This parameter or properties of this parameter can be null.
- culture
A System.Globalization.CultureInfo object. If null, the current culture is used.
- value
The object to convert.
![]()
An object that represents the converted value.
The StringArrayConverter.ConvertFrom(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, object) method parses an object that represents a comma-separated string into an array of strings. Prior to calling this method, you can call the StringArrayConverter.CanConvertFrom(System.ComponentModel.ITypeDescriptorContext, Type) method to determine whether the object specified by value can be converted to an array of strings.
To convert an array of strings into a comma-separated string, use the StringArrayConverter.ConvertTo(System.ComponentModel.ITypeDescriptorContext, System.Globalization.CultureInfo, object, Type) method.