EventDelegate.GetHashCode C# (CSharp) Метод

GetHashCode() публичный Метод

Used in equality operators.
public GetHashCode ( ) : int
Результат int
	public override int GetHashCode () { return s_Hash; }

Usage Example

Пример #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