clojure.lang.Keyword.invoke C# (CSharp) Method

invoke() public final method

(:keyword arg) => (get arg :keyword)
public final invoke ( object arg1 ) : object
arg1 object The object to access.
return object
        public override sealed object invoke(object arg1)
        {
            ILookup ilu = arg1 as ILookup;

            if (ilu != null)
                return ilu.valAt(this);

            return RT.get(arg1, this);
        }

Same methods

Keyword::invoke ( object arg1, object notFound ) : object