System.Yaml.AnchorDictionary.this C# (CSharp) Méthode

this() public méthode

public this ( string anchor_name ) : YamlNode
anchor_name string
Résultat YamlNode
        public YamlNode this[string anchor_name]
        {
            get
            {
                if ( !Items.ContainsKey(anchor_name) )
                    Error("Anchor {0} has not been registered.", anchor_name);
                return Items[anchor_name];
            }
        }