internal static List <PropertyInfo> SortFields(this List <PropertyInfo> properties)
 {
     properties.Sort((a, b) => AttributeUtils.ComparePropertyInfo(a, b));
     return(properties);
 }