public EmberNode AddChildNode(int index, string identifier) { return(ProviderRoot.AddSubNode(index, identifier, this)); }
public EmberNode AddChildNode(ValueType identifier) { return(ProviderRoot.AddSubNode((int)identifier, identifier.ToString().Replace("_", " "), this)); }
public EmberNode AddChildNode(ValueType identifier) { return(ProviderRoot.AddSubNode(identifier, this)); }