Volante.Impl.ClassDescriptor.isObjectProperty C# (CSharp) Method

isObjectProperty() private static method

private static isObjectProperty ( Type cls, FieldInfo f ) : bool
cls System.Type
f System.Reflection.FieldInfo
return bool
        private static bool isObjectProperty(Type cls, FieldInfo f)
        {
            return typeof(PersistentWrapper).IsAssignableFrom(cls) && f.Name.StartsWith("r_");
        }