IKVM11  11
Java SE 11 Virtual Machine for .NET
Loading...
Searching...
No Matches
IKVM.Reflection.ConstructorInfoWithReflectedType Class Referencesealed

Public Member Functions

override bool Equals (object obj)
 
override int GetHashCode ()
 

Properties

override Type ReflectedType [get]
 

Detailed Description

Definition at line 29 of file ConstructorInfoWithReflectedType.cs.

Member Function Documentation

◆ Equals()

override bool IKVM.Reflection.ConstructorInfoWithReflectedType.Equals ( object obj)

Definition at line 47 of file ConstructorInfoWithReflectedType.cs.

48 {
49 var other = obj as ConstructorInfoWithReflectedType;
50 return other != null && other.reflectedType == reflectedType && other.ctor == ctor;
51 }

◆ GetHashCode()

override int IKVM.Reflection.ConstructorInfoWithReflectedType.GetHashCode ( )

Definition at line 53 of file ConstructorInfoWithReflectedType.cs.

54 {
55 return reflectedType.GetHashCode() ^ ctor.GetHashCode();
56 }

Property Documentation

◆ ReflectedType

override Type IKVM.Reflection.ConstructorInfoWithReflectedType.ReflectedType
get

Definition at line 58 of file ConstructorInfoWithReflectedType.cs.

59 {
60 get { return reflectedType; }
61 }

The documentation for this class was generated from the following file: