public static readonly PropertyInfo<int> TestIntProperty = RegisterProperty<int>(c => c.TestInt);
[MyAttribute]
public int TestInt
{
get { return GetProperty(TestIntProperty); }
set { SetProperty(TestIntProperty, value); }
}
Just like this , Can I ?
Yes, you can.
Just inherit from System.Attribute. You can also look at the
Thank you for your answer.
Its usage just like a normal class.
Thank you for your answer.
Its usage just like a normal class.
Also Must Use The System.Refection.
Copyright (c) Marimer LLC