clojure.lang.Agent.deref C# (CSharp) 메소드

deref() 공개 메소드

Gets the (immutable) value the reference is holding.
public deref ( ) : object
리턴 object
        public override object deref()
        {
            if (_errors != null)
                throw new Exception("Agent has errors", (Exception)RT.first(_errors));
            return _state;
        }