visual studio
c#
中是否有一个工具可以生成类的字段?假设我们有一个名为class
的{{1}}:
Contact
当我输入public class Contact
{
public int Id { get; set; }
public string Name { get; set; }
public DateTime? CreatedAt { get; set; }
public string CreatedBy { get; set; }
public DateTime? UpdatedAt { get; set; }
public string UpdatedBy { get; set; }
public bool? Active { get; set; }
// ....Some more Fields below
}
时,类似输入道具时,它将在下面生成此字段
Contact
注意:这里的Contact o = new Contact // Generated
{
Id = o1.Id,
Name = o1.Name
// Some more fields generated here
};
仅是一个示例。