EventDelegate.GetHashCode C# (CSharp) Method

GetHashCode() public method

Used in equality operators.
public GetHashCode ( ) : int
return int
	public override int GetHashCode () { return s_Hash; }

Usage Example

Beispiel #1
0
    static int GetHashCode(IntPtr L)
    {
        LuaScriptMgr.CheckArgsCount(L, 1);
        EventDelegate obj = (EventDelegate)LuaScriptMgr.GetNetObjectSelf(L, 1, "EventDelegate");
        int           o   = obj.GetHashCode();

        LuaScriptMgr.Push(L, o);
        return(1);
    }
All Usage Examples Of EventDelegate::GetHashCode