Region, kodların okunurluğunu arttırmak , daha düzenli bir yapıda olması için kullanılmaktadır. Region eklenmek istenilen kodun üst tarafında #region , alt tarafında ise #endregion ifadesi kullanılır . Ctrl + k + s kısayolu ile region oluşturabilirsiniz.
Region Kullanımı
1 2 3 4 5 6 7 8 |
#region "Properties" public string Id { get; set; } public Int32 TCNo { get; set; } public string Adi { get; set; } public string Soyadi { get; set; } public DateTime DogumTarihi { get; set; } public string ProfilResmiYolu { get; set; } #endregion |
Yorum Yap
You must be logged in to post a comment.