Terraria v1.4.4.9
Terraria source code documentation
Loading...
Searching...
No Matches

◆ Equals() [1/2]

override bool System.ModuleHandle.Equals ( [NotNullWhen(true)] object? obj)
inline

Definition at line 37 of file ModuleHandle.cs.

38 {
39 if (!(obj is ModuleHandle moduleHandle))
40 {
41 return false;
42 }
43 return moduleHandle.m_ptr == m_ptr;
44 }
ModuleHandle(RuntimeModule module)
readonly RuntimeModule m_ptr

References System.ModuleHandle.m_ptr, and System.obj.

Referenced by System.Reflection.MdFieldInfo.CacheEquals(), System.ModuleHandle.operator!=(), and System.ModuleHandle.operator==().