Class CharExtensions
- Namespace
- Cuemon.Extensions
- Assembly
- Cuemon.Extensions.Core.dll
Extension methods for the Char struct.
public static class CharExtensions
- Inheritance
-
CharExtensions
Methods
FromChars(IEnumerable<Char>)
Converts the specified values
to its equivalent String representation.
public static string FromChars(this IEnumerable<char> values)
Parameters
values
IEnumerable<Char>The IEnumerable{char} to extend.
Returns
Exceptions
- ArgumentNullException
values
cannot be null.
ToEnumerable(IEnumerable<Char>)
Converts the specified values
to its equivalent IEnumerable{string}.
public static IEnumerable<string> ToEnumerable(this IEnumerable<char> values)
Parameters
values
IEnumerable<Char>The IEnumerable{char} to extend.
Returns
- IEnumerable<String>
An IEnumerable{string} equivalent to the specified
values
.
Exceptions
- ArgumentNullException
values
cannot be null.