Sitecore 5.1.1 API

StringUtil.ParseArguments Method 

Parses an argument list into a string array.

[Visual Basic]
Public Shared Function ParseArguments( _
   ByVal arguments As String _
) As String()
[C#]
public static string[] ParseArguments(
   string arguments
);

Parameters

arguments
The input string.

Remarks

The input string has the format: '"String1", "String2"'. This will result in an array with two elements: String1 and String2. To escape the double quote character (") use two consequetive double quotes ("").

See Also

StringUtil Class | Sitecore Namespace