System::ICustomFormatter class

ICustomFormatter class

Defines a method that performs custom formatting of a string representation of a value represented by the specified object. Objects of this class should only be allocated using System::MakeObject() function. Never create instance of this type on stack or using operator new, as it will result in runtime errors and/or assertion faults. Always wrap this class into System::SmartPtr pointer and use this pointer to pass it to functions as argument.

class ICustomFormatter : public virtual System::Object

Methods

MethodDescription
virtual Format(System::String, System::SharedPtr<System::Object>, System::SharedPtr<System::IFormatProvider>)Returns a string representation of a value represented by the current object using the specified format.

See Also