PackageUtilities.ConvertFromType<T> Method
Converts a string to an enumeration using a converter.
Namespace: Microsoft.VisualStudio.Shell
Assembly: Microsoft.VisualStudio.Shell.11.0 (in Microsoft.VisualStudio.Shell.11.0.dll)
Syntax
‘선언
Public Shared Function ConvertFromType(Of T As {Structure, New}) ( _
value As String, _
culture As CultureInfo _
) As Nullable(Of T)
public static Nullable<T> ConvertFromType<T>(
string value,
CultureInfo culture
)
where T : struct, new()
Type Parameters
- T
The type of the Nullable.
Parameters
- value
Type: System.String
The string value.
- culture
Type: System.Globalization.CultureInfo
The CultureInfo of the string.
Return Value
Type: System.Nullable<T>
The enumeration value.
Remarks
The type parameter used should be an enumeration for which there is a subtype of EnumConverter.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.