If I have 2 objects of the same class, and I do one of these...
string[] props1 = object1.GetType().GetProperties();
string[] props2 = object2.GetType().GetProperties();
Are the entries of the props1 and props2 arrays guaranteed to be in the same order???
string[] props1 = object1.GetType().GetProperties();
string[] props2 = object2.GetType().GetProperties();
Are the entries of the props1 and props2 arrays guaranteed to be in the same order???