I am getting many errors here starting with field as type! I am trying here to use a class where The user would be able to create a fashion profile by inputting details about their looks \[code\]public class Profile { public Profile() { } // method public string getMSG() { return "What do you look like"; } private string _eyecolor; public string eyeColor; { get {return _eyecolor;} set { if!string.IsNullOrEmpty(value); { _eyecolor=value.substring(0,1).ToUpper() +value.Substring(1); } else { _eycolor=value; }\[/code\]