CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
iformattable.h
1
2#pragma once
3
4#include <system/iformatprovider.h>
5
6namespace System {
7
9class ASPOSECPP_SHARED_CLASS IFormattable : public virtual Object
10{
11 RTTI_INFO(System::IFormattable, System::BaseTypesInfo<System::Object>);
12
13public:
14 virtual ASPOSECPP_SHARED_API String ToString(String format, SharedPtr<IFormatProvider> formatProvider) = 0;
15};
16
17} // namespace System
Defines a method that formats the value of the current object using the specified format string and f...
Definition: iformattable.h:10
virtual String ToString(String format, SharedPtr< IFormatProvider > formatProvider)=0
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Pointer class to wrap types being allocated on heap. Use it to manage memory for classes inheriting O...
Definition: smart_ptr.h:180
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
Definition: db_command.h:9