CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
data_column_collection.h
1
2#pragma once
3
4#include <system/object.h>
5#include <cstdint>
6
7namespace System {
8namespace Data {
9
10class DataColumn;
11
16class ASPOSECPP_SHARED_CLASS DataColumnCollection : public System::Object
17{
19 RTTI_INFO(System::Data::DataColumnCollection, ::System::BaseTypesInfo<System::Object>)
20
21public:
24 ASPOSECPP_SHARED_API int32_t get_Count();
28 ASPOSECPP_SHARED_API System::SharedPtr<DataColumn> idx_get(const int32_t index);
32 ASPOSECPP_SHARED_API int32_t IndexOf(const System::String& columnName);
33};
34
35}
36}
Encapsulates collection of data columns. Objects of this class should only be allocated using System:...
Definition: data_column_collection.h:17
System::SharedPtr< DataColumn > idx_get(const int32_t index)
Gets column by index.
int32_t IndexOf(const System::String &columnName)
Looks for column in collection.
int32_t get_Count()
RTTI information.
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