System.ReflectionLibrary.Get C# (CSharp) Method

Get() public static method

public static Get ( Type type, string info, &data ) : bool
type Type
info string
return bool
        public static bool Get<T>(this Type type, string info, out T data) =>
            type.GetData(info, out data) || type.Retrieve(info, out data);

Same methods

ReflectionLibrary::Get ( Type type, string info, object &data ) : bool
ReflectionLibrary::Get ( object o, string info, object &data ) : bool
ReflectionLibrary::Get ( object o, string info, &data ) : bool