C# (CSharp) Gammtek.Conduit.Text.Formatting Namespace

Сlasses

Name Description
ArrayFormatInfo Format provider used to format strings that represent arrays of objects. VerboseFormatInfo delegates calls to this class when formatting arrays. This class is internal and cannot be used directly.
CompactMatrixFormatInfo Formats strings that represent matrices of scalar types. Also applicable to jagged arrays of scalar types. VerboseFormatInfo delegates calls to this class when formatting two-dimensional arrays or jagged arrays of simple types. This class is internal and cannot be used directly.
DictionaryFormatInfo Format provider used to format strings that represent objects that implement System.Collections.IDictionary or System.Collections.Generic.IDictionary<T> interface. Formatted string represents keys and values contained in the object. VerboseFormatInfo delegates calls to this class when formatting dictionary objects. This class is internal and cannot be used directly.
EnumerableFormatInfo Format provider used to format strings that represent objects which implement System.Collections.IEnumerable or System.Collections.Generic.IEnumerable<T> interface. VerboseFormatInfo delegates calls to this class when formatting enumerable types. This class is internal and cannot be used directly.
FormatInfoUtils Stateless static class which exposes methods used to help format strings. This class is internal and cannot be used directly. It is rather used by other classes declared in the SysExpand.Text.Formatting namespace to help format strings.
GeneralFormatInfo Format provider applied to general objects which could not be conveniently formatted using more specific format providers. VerboseFormatInfo delegates calls to this class when none other formatter is applicable to given object. This class is internal and cannot be used directly.
ScalarFormatInfo Provides formatting services for scalar data types and for strings. These types include numeric types, Boolean, characters, date time, enumerations and strings. VerboseFormatInfo delegates calls to this class when one of the listed types is formatted. This class is internal and cannot be used directly.
VerboseFormatInfo Provides extended formatting serivces that can be applied to all reference and value types. This class merely analyzes object that should be formatted and then delegates formatting to the specific formatter most appropriate for the given type.
VerboseFormatInfoBase Base class for all verbose format providers. Implements basic functionality and defines mandatory members that would be overridden or implemented by derived classes in order to provide specific functionality applicable to format strings representing instances of particular data types.