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

ToJson() 공개 메소드

public ToJson ( ) : string
리턴 string
        public string ToJson()
        {
            return _object.ToString();
        }

Usage Example

예제 #1
0
        public string WriteToJson(Test test)
        {
            var node = new JsonNode("Test");
            node["Name"] = test.Name;

            new WriterVisitor(test, node).Write();

            return node.ToJson();
        }
All Usage Examples Of StoryTeller.Persistence.JsonNode::ToJson