Click or drag to resize

StringExtensionsConvertToTypeT(String) Method

Converts this string into the specified type.

Namespace: GSF
Assembly: GSF.Core (in GSF.Core.dll) Version: 2.4.181-beta
Syntax
public static T ConvertToType<T>(
	this string value
)
View Source

Parameters

value  String
Source string to convert to type.

Type Parameters

T
Type to convert string to.

Return Value

T
String converted to specified Type; default value of specified type T if conversion fails.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type String. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
Remarks
This function makes use of a TypeConverter to convert this String to the specified type T, the best way to make sure value can be converted back to its original type is to use the same TypeConverter to convert the original object to a String; see the TypeConvertToString(Object) method for an easy way to do this.
See Also