ASP.NET(C#) ile Property isimlerini ve Türlerini listeletme
Merhaba arkadaşlar bu yazımda asp.net ile bir class içinde oluşturduğumuz propertyleri ve bu propertylerin tiplerini listeletme kodlarını paylaşacağım. public class ogrenci { public string adi { get; set; } public string okulu { get; set; } public int yasi { get; set; } } //YUKARIDAKİ KISIMDA CLASSIMIZI OLUŞTURDUK public partial class _Default : System.Web.UI.Page {