public PropertyBinding[] GetProperties(Type type)
 {
     PropertyBinding[] result = new PropertyBinding[3];
     result[0] = new MyPropertyBinding(0, typeof(int));
     result[1] = new MyPropertyBinding(1, typeof(string));
     result[2] = new MyPropertyBinding(2, typeof(DateTime));
     return(result);
 }
Example #2
0
		public PropertyBinding[] GetProperties(Type type)
		{
			PropertyBinding[] result = new PropertyBinding[3];
			result[0] = new MyPropertyBinding(0, typeof(int));
			result[1] = new MyPropertyBinding(1, typeof(string));
			result[2] = new MyPropertyBinding(2, typeof(DateTime));
			return result;
		}