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

this() 공개 메소드

public this ( string attName ) : string
attName string
리턴 string
        public string this[string attName]
        {
            get
            {
                JToken property = _object[attName];
                return property == null ? string.Empty : property.Value<string>();
            }
            set { _object[attName] = new JValue(value); }
        }