Click or drag to resize
IFormatter Interface

[This is preliminary documentation and is subject to change.]

Interface for classes that provide (culture-specific) conversion betwwen binary and string

Namespace: CSC.SC.TOPICA4.Template
Assembly: CSC.SC.TOPICA4.Template (in CSC.SC.TOPICA4.Template.dll) Version: 4.30.6239.27196
Syntax
C#
public interface IFormatter

The IFormatter type exposes the following members.

Methods
  NameDescription
Public methodToDate
Convert string to Nullable DateTime, date only
Public methodToDateTime
Convert string to Nullable DateTime
Public methodToDouble
Convert string to Nullable double
Public methodToInteger
Convert string to Nullable int
Public methodToString(Boolean)
Convert bool to string
Public methodToString(DateTime)
Convert DateTime to string - date/time if time specified, date otherwise
Public methodToString(Double)
Convert double to string
Public methodToString(Int32)
Convert int to string
Public methodToString(NullableBoolean)
Convert Nullable bool to string
Public methodToString(NullableDateTime)
Convert Nullable DateTime to string - date/time if time specified, date otherwise
Public methodToString(NullableDouble)
Convert Nullable double to string
Public methodToString(NullableInt32)
Convert Nullable int to string
Public methodToString(Object)
Convert any object to string
Public methodToStringDate(DateTime)
Convert DateTime (date part only) to string
Public methodToStringDate(NullableDateTime)
Convert Nullable DataTime (date part only) to string
Public methodToStringDateTime(DateTime)
Convert DateTime to string
Public methodToStringDateTime(NullableDateTime)
Convert Nullable DateTime to string
Public methodToStringTime(DateTime)
Convert DateTime (time part only) to string
Public methodToStringTime(NullableDateTime)
Convert Nullable DateTime (time part only) to string
Public methodToTime
Convert string to Nullable TimeSpan, time only
Top
See Also