Interface ICharFormatter
Interface for Character Formatters.
Namespace: VDS.RDF.Writing.Formatting
Assembly: dotNetRdf.dll
Syntax
public interface ICharFormatter
Methods
| Improve this Doc View SourceFormatChar(char)
Formats a Character as a String.
Declaration
[Obsolete("This form of the FormatChar() method is considered obsolete as it is inefficient", true)]
string FormatChar(char c)
Parameters
Type | Name | Description |
---|---|---|
char | c | Character. |
Returns
Type | Description |
---|---|
string |
FormatChar(char[])
Formats a sequence of characters as a String.
Declaration
string FormatChar(char[] cs)
Parameters
Type | Name | Description |
---|---|---|
char[] | cs | Characters. |
Returns
Type | Description |
---|---|
string | String. |