SoapNegativeInteger.Parse(String) メソッド

定義

指定した StringSoapNegativeInteger オブジェクトに変換します。

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

パラメーター

value
String

変換する String

返品

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);

適用対象