klasowy testclass
{
społeczeństwo smyczkowy property1
{
set;
dostawać;
}
społeczeństwo smyczkowy property2
{
set;
dostawać;
}
społeczeństwo int property3
{
set;
dostawać;
}
}
grupować Program
{
statyczny kawitacyjny Główny (sznurek [] args)
{
//creating przedmiot dla testclass & położenie wartość własność
testclass objtestclass = nowy testclass ();
objtestclass.property1 = "Value1";
objtestclass.property2 = "Value2";
objtestclass.property3 = 120;
PropertyInfo [] pinfo;
pinfo = objtestclass.GetType () .GetProperties ();
foreach (PropertyInfo p w pinfo)
{
Console.WriteLine ("Własność Imię: "+p.Name);
Console.WriteLine ("Wartość Nieruchomości: " +p.GetValue (objtestclass, null) + "\ n");
}
Console.Read ();
}
}
|