Suppose you are given a Class.dll assembly compiled from the following simple code: namespace ClassLibrary
Does Type.GetProperties() 开发者_如何学Goguarantee a certain order for its PropertyInfo[] result? Such as returning them in alphabetical order by property name or the order they appear in code. Or is
Lets say I have this class class Child { public string FirstName { get; set; } public string LastName { get; set; }