public class City { //method constructor public City() {} //overload method constructor public City(string id, string name) { //initial properties this.Id = id; this.Name = name; } //public properties public string Id { get; set; } //public properties public string Name { get; set; } }
//แบบที่ 1.1 - ปกติ City c1 = new City(); c1.Id = "1"; c1.Name = "c1"; //แบบที่ 1.2 - ย่อ City c2 = new City() { Id = "2", Name = "c2" }; //แบบที่ 2 - overload City c3 = new City("3", "c3");
Quote:คำถาม 2. ตรง public City(), กับ public Citiy(string id, string name) คือการ override ใช่หรือไม่ครับ
เพื่อความปลอดภัยของเว็บบอร์ด ไม่อนุญาติให้แทรก แท็ก [img]....[/img] โดยการอัพโหลดไฟล์รูปจากที่อื่น เช่นเว็บไซต์ ฟรีอัพโหลดต่าง ๆ อัพโหลดแทรกรูปภาพ ให้ใช้บริการอัพโหลดไฟล์ของไทยครีเอท และตัดรูปภาพให้พอดีกับสกรีน เพื่อความโหลดเร็วและไฟล์ไม่ถูกลบทิ้ง