CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
method_info.h
1
2#pragma once
3#include <system/object.h>
4#include <system/string.h>
5#include <system/reflection/member_info.h>
6
7namespace System { namespace Reflection {
8
10class ASPOSECPP_SHARED_CLASS MethodInfo : public MemberInfo
11{
12public:
15 ASPOSECPP_SHARED_API MethodInfo(const String& name);
16
18 ASPOSECPP_SHARED_API virtual MemberTypes get_MemberType() const override;
19
20};
21
22}}
Provides reflection information on members. Objects of this class should only be allocated using Syst...
Definition: member_info.h:16
Represents information on class method.
Definition: method_info.h:11
MethodInfo(const String &name)
Initializes a new instance of the MethodInfo class.
virtual MemberTypes get_MemberType() const override
Gets a MemberTypes value indicating that this member is a method.
String class used across the library. Is a substitute for C# System.String when translating code....
Definition: string.h:122
MemberTypes
Marks each type of member.
Definition: member_types.h:11
Definition: db_command.h:9