快速操作:现场类生成器

时间:2018-12-07 02:26:00

标签: c# visual-studio

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 }; 仅是一个示例。

0 个答案:

没有答案