CodePorting.Translator Cs2Cpp
CodePorting.Translator.Cs2Cpp.Framework
iequatable.h
1
3#ifndef _IEquatable_h_
4#define _IEquatable_h_
5
6#include "system/object.h"
7
8namespace System {
14 template<typename T = SharedPtr<System::Object> >
15 class IEquatable : virtual public Object
16 {
17 RTTI_INFO_TEMPLATE_CLASS(System::IEquatable<T>, System::BaseTypesInfo<System::Object>);
18 public:
22 virtual bool Equals(T other) = 0;
23 };
24}
25
26#endif
Defines a method that determines the equality of two objects. Objects of this class should only be al...
Definition: iequatable.h:16
virtual bool Equals(T other)=0
Determines if the the current and specified objects are equal.
Base class that enables using methods available for System.Object class in C#. All non-trivial classe...
Definition: object.h:62
Definition: db_command.h:9