Properties of a class in Silver

How can I get list of properties in a class using Silver?

You mean to enumerate the available properties at runtime, in a Refection-like manner? If so,i’m afraid there’s not a cross-platform way to do that, currentlym=, but you can us each platform’s own introspection APIs — such as Reflection on .NET, or the (lower-level) Objective-C Runtime APIs on Cocoa.

What platform(s) are you using, and what is your exact goal?

I have a simple mobile app, written in Delphi which uses a simple ORM (using Delphi RTTI). I am rewriting this using Silver and want to migrate the ORM as well, but it looks like it might not be possible, not because of Silver but because of the underlying runtimes.

I think all it needs is a simple wrapper that gives you the info you need, all platforms let you find properties and get/set their values, the only thing that has to be done here is to write some code for it (OSX/iOS will be trickiest)