StoryTeller.Persistence.JsonNode.With C# (CSharp) 메소드

With() 공개 메소드

public With ( Action action ) : INode
action Action
리턴 INode
        public INode With(Action<INode> action)
        {
            action(this);
            return this;
        }