System.ReflectionLibrary.Get C# (CSharp) Method

Get() public static method

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

Same methods

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