In Xamarin PCL, I\'m trying to get the System.Reflection.PropertyInfo of a class I\'ve written so that I can access its properties by their string name to get/set, and Type.
You can also try
using System.Reflection; Type t = typeof(YOURTYPE); var properties = t.GetTypeInfo().DeclaredProperties