CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
icollection_ng.h
1#pragma once
2#include <system/object.h>
3#include <system/collections/ienumerable_ng.h>
4
5namespace System {
6namespace Collections {
7
10class ASPOSECPP_SHARED_CLASS ICollection : public System::Collections::IEnumerable
11{
13 RTTI_INFO_TEMPLATE_CLASS(System::Collections::ICollection, System::BaseTypesInfo<System::Collections::IEnumerable>);
14public:
17 virtual int get_Count() const = 0;
18};
19
20} // namespace Collections
21} // namespace System
Defines non generic collection interface.
Definition: icollection_ng.h:11
virtual int get_Count() const =0
Gets number of elements in collection.
IEnumerable is the base interface for all non-generic collections that can be enumerated.
Definition: ienumerable_ng.h:10
Definition: db_command.h:9