SoapNegativeInteger.Parse(String) メソッド
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
指定した String を SoapNegativeInteger オブジェクトに変換します。
public:
static System::Runtime::Remoting::Metadata::W3cXsd2001::SoapNegativeInteger ^ Parse(System::String ^ value);
public static System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger Parse(string value);
static member Parse : string -> System.Runtime.Remoting.Metadata.W3cXsd2001.SoapNegativeInteger
Public Shared Function Parse (value As String) As SoapNegativeInteger
パラメーター
返品
SoapNegativeIntegerから取得されるvalue オブジェクト。
例
次のコード例は、 Parse メソッドの使用方法を示しています。 このコード例は、 SoapNegativeInteger クラスに提供されるより大きな例の一部です。
// Parse an XSD formatted string to create a SoapNegativeInteger
// object.
String^ xsdIntegerString = L"-13";
SoapNegativeInteger^ xsdInteger = SoapNegativeInteger::Parse(
xsdIntegerString );
// Parse an XSD formatted string to create a SoapNegativeInteger
// object.
string xsdIntegerString = "-13";
SoapNegativeInteger xsdInteger =
SoapNegativeInteger.Parse(xsdIntegerString);