CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_column.h
1
2#pragma once
3
4#include <system/object.h>
5#include <system/string.h>
6
7namespace System {
8namespace Data {
9
14class ASPOSECPP_SHARED_CLASS DataColumn : public System::Object {
16 RTTI_INFO(System::Data::DataColumn, ::System::BaseTypesInfo<System::Object>)
17public:
18
21 ASPOSECPP_SHARED_API System::String get_ColumnName();
22};
23
24}
25}
Describes column in data. Objects of this class should only be allocated using System::MakeObject() f...
Definition: data_column.h:14
System::String get_ColumnName()
RTTI information.
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
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