using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Leit.Model { public enum DataFormat { // // 摘要: // 按照顺序排序 ABCD = 0, // // 摘要: // 按照单字反转 BADC = 1, // // 摘要: // 按照双字反转 CDAB = 2, // // 摘要: // 按照倒序排序 DCBA = 3 } }