System.ReflectionLibrary.Set C# (CSharp) Method

Set() public static method

public static Set ( object o, string info, data ) : bool
o object
info string
return bool
        public static bool Set<T>(this object o, string info, T data) =>
            o.SetData(info, data) || o.Assign(info, data);

Same methods

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