バージョン

ParseNameValuePairs メソッド

指定した名前/値ペアを解析します。このメソッドが解析する名前/値ペアの例は以下のとおりです。
            State = New York, City = New York
            State = "New York", City = "New York"
            State=New York,City=New York
            A\/B = C\/D (column name is A/B and value is C/D.)
            A = 10 miles\/hour, B = "20 miles/hour" (Withing double quotes only double quotes and backward slash have to be escaped.)
            P1 = 10\, 20, P2 = "10, 20"
            
NameValuePair オブジェクトの配列を返します。注: 名前と値はエスケープせず、囲んでいる引用符も取り去ります。
シンタックス
'宣言
 
Public Shared Function ParseNameValuePairs( _
   ByVal pairs As String, _
   ByRef error As String _
) As RefParser.NameValuePair()
public static RefParser.NameValuePair[] ParseNameValuePairs( 
   string pairs,
   out string error
)

パラメータ

pairs
名前値のペアを含む文字列。
error
エラー メッセージで移植される文字列が発生します。

戻り値の型

RefParser.NameValuePair オブジェクトの配列。
参照