G
Guest
Hi all
Is there any way to do something like this:
SomeClass A = SomeClass(...)
....
foreach (property P in A.Properties)
{
Console.WriteLine(P.Name + "=" + P.Value);
}
In other words, I need to be able to see all object's properties values
(order is not important), i.e. access properties as they were members of a
collection or array.
Thank you
Alex
Is there any way to do something like this:
SomeClass A = SomeClass(...)
....
foreach (property P in A.Properties)
{
Console.WriteLine(P.Name + "=" + P.Value);
}
In other words, I need to be able to see all object's properties values
(order is not important), i.e. access properties as they were members of a
collection or array.
Thank you
Alex