Common Logging 2.0 API Reference

ArgUtils.RegisterTypeParser(T) Method

Adds the parser to the list of known type parsers.

[Visual Basic]
Public Shared Sub RegisterTypeParser(Of T)( _
   ByVal parser As ParseHandler(Of T) _
)
[C#]
public static void RegisterTypeParser<T>(
   ParseHandler<T> parser
);

Remarks

.NET intrinsic types are pre-registerd: short, int, long, float, double, decimal, bool

See Also

ArgUtils Class | Common.Logging.Configuration Namespace