Exemplo n.º 1
0
 public T GetCustom <T>(string name)
 {
     return(ResolveParamsUtility.GetCustom <T>(custom, name));
 }
Exemplo n.º 2
0
 public void RemoveCustom(string name)
 {
     ResolveParamsUtility.RemoveCustom(ref custom, name);
 }
Exemplo n.º 3
0
 public bool TryGetCustom <T>(string name, out T obj)
 {
     return(ResolveParamsUtility.TryGetCustom(custom, name, out obj));
 }
Exemplo n.º 4
0
 public void SetCustom <T>(string name, T obj, bool inherit = false)
 {
     ResolveParamsUtility.SetCustom(ref custom, name, obj, inherit);
 }