You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

28 lines
520 B

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