| 1234567891011121314151617181920212223242526 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- public enum AxCommVarType
- {
- Undefined = 0,
- Boolean = 1,
- SByte = 2,
- Byte = 3,
- Int16 = 4,
- UInt16 = 5,
- Int32 = 6,
- UInt32 = 7,
- Int64 = 8,
- UInt64 = 9,
- Float = 10,
- Double = 11,
- String = 12,
- Complex = 100,
- Custom = 200
- }
|