次の方法で共有


QueryStringConverter.CanConvert(Type) メソッド

定義

指定した型と文字列表現を双方向に変換できるかどうかを確認します。

public:
 virtual bool CanConvert(Type ^ type);
public virtual bool CanConvert (Type type);
abstract member CanConvert : Type -> bool
override this.CanConvert : Type -> bool
Public Overridable Function CanConvert (type As Type) As Boolean

パラメーター

type
Type

変換対象の Type

戻り値

型を変換できるかどうかを指定する値。

QueryStringConverter を使用して指定の型との間で変換を行うことができるかどうかを調べる方法を次のコードに示します。

if (converter.CanConvert(typeof(Int32)))
    converter.ConvertStringToValue("123", typeof(Int32));
If (converter.CanConvert(GetType(Int32))) Then
    converter.ConvertStringToValue("123", GetType(Int32))
End If

適用対象