Volante.Impl.ClassDescriptor.isObjectProperty C# (CSharp) 메소드

isObjectProperty() 개인적인 정적인 메소드

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