Interface IStringProcessor<TReturn>
Provides a mechanism for processing string literals, for example to allow them to have different encodings.
public interface IStringProcessor<out TReturn>
Type Parameters
TReturn
- Extension Methods
Methods
Process(string)
Processes the specified input string.
public static abstract TReturn Process(string input)
Parameters
inputstringThe string to process.
Returns
- TReturn
The processed object.