| String | 
The StringParser type exposes the following members.
 Methods
Methods| Name | Description | |
|---|---|---|
|   | Escape | Escapes all occurrences of '${' to '${$}{'. | 
|   | Format | Applies the StringParser to the formatstring; and then calls string.Format on the result.
            
             This method is equivalent to: C# return string.Format(StringParser.Parse(formatstring), formatitems); | 
|   | GetValue | Evaluates a property using the StringParser. Equivalent to StringParser.Parse("${" + propertyName + "}"); | 
|   | Parse(String) | Expands ${xyz} style property values. | 
|   | Parse(String, StringTagPair) | Expands ${xyz} style property values. | 
|   | RegisterStringTagProvider(IStringTagProvider) | |
|   | RegisterStringTagProvider(String, IStringTagProvider) | 
 See Also
See Also