For instance, I want to declare properties, all of which are strings:
I tried public string p1, p2, p3 { get; set; }
Obviously this does not compile, is there an easier way than this one? :
public string p1 { get; set; }
public string p2 { get; set; }
public string p3 { get; set; }
Thanks!