Questo script in c# permette di recuperare i nomi e valori delle proprietà di una classe
var props = this.GetType().GetProperties();
var propString = string.Join(Environment.NewLine, props.Select(x => string.Format("{0} = {1}", x.Name, (x.GetValue(this, null) ?? "NULL").ToString())).ToArray());
Total Views Views Today