public class MainViewModel
{
[Save]
public String Name { get; set; }
public MainViewModel()
{
Name = "qwe asd zxc";
LoadProperties(this);
}
public void LoadProperties(object viewModel)
{
var properties = viewModel.GetType().GetCustomAttributes(typeof(Save),false);
}
}
public class Save : Attribute{}
ロード プロパティ メソッドのプロパティ変数に 0 項目があります。何が間違っていましたか?