Method | Description | |
---|---|---|
PropertiesToString ( |
Convert NameValueCollection object to String. This is only necessary for compatibility with converting the String back to a NameValueCollection object. If an empty properties object is passed in, nempty string is returned, otherwise its string representation is returned.
|
|
StringToProperties ( string stringToParse ) : |
Parse a String to a NameValueCollection object. If string is null, an empty NameValueCollection object will be returned. The input String is a set of name=value pairs, delimited by either newline or comma (for brevity). If the input String contains a newline it is assumed that the separator is newline, otherwise comma.
|
public static PropertiesToString ( |
||
propertiesToParse | the NameValueCollection to load into | |
return | string |
public static StringToProperties ( string stringToParse ) : |
||
stringToParse | string | String to parse |
return |