求一个写类字段和属性的宏或者工具就是自动写下面这样的宏,或什么工具
private string userName;public string UserName{ get { return userName; } set { userName = value; }}