PackageUtilities.ConvertFromType<T> Method

Converts a string to an enumeration using a converter.

This API is not CLS-compliant. The CLS-compliant alternative is [None].

Namespace:  Microsoft.VisualStudio.Shell
Assemblies:   Microsoft.VisualStudio.Shell.9.0 (in Microsoft.VisualStudio.Shell.9.0.dll)
  Microsoft.VisualStudio.Shell (in Microsoft.VisualStudio.Shell.dll)
  Microsoft.VisualStudio.Shell.10.0 (in Microsoft.VisualStudio.Shell.10.0.dll)

Syntax

声明
<CLSCompliantAttribute(False)> _
Public Shared Function ConvertFromType(Of T As {Structure, New}) ( _
    value As String, _
    culture As CultureInfo _
) As Nullable(Of T)
用法
Dim value As String
Dim culture As CultureInfo
Dim returnValue As Nullable(Of T)

returnValue = PackageUtilities.ConvertFromType(value, _
    culture)
[CLSCompliantAttribute(false)]
public static Nullable<T> ConvertFromType<T>(
    string value,
    CultureInfo culture
)
where T : struct, new()
[CLSCompliantAttribute(false)]
public:
generic<typename T>
where T : value class, gcnew()
static Nullable<T> ConvertFromType(
    String^ value, 
    CultureInfo^ culture
)
[<CLSCompliantAttribute(false)>]
static member ConvertFromType : 
        value:string * 
        culture:CultureInfo -> Nullable<'T>  when 'T : struct, new()
JScript does not support generic types or methods.

Type Parameters

  • T

Parameters

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

See Also

Reference

PackageUtilities Class

PackageUtilities Members

Microsoft.VisualStudio.Shell Namespace