How i can do?
I want:
1. Lower case first charcter of (method or property) name who have private acsesor. Javascript style
2. Format like this:
public long Code { get; set; }
public long Folder { get; set; }
public FieldType Type { get; set; }
public string Name { get; set; }
public string Length { get; set; }
and
this.Code = code;
this.Folder = folder;
this.Type = (FieldType)type;
this.Name = name;
this.Length = length;
Can i do?
Please sign in to leave a comment.