using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace uBIM_EarthTools { enum TypeEquals { /// /// 全不等 /// UnEqual, /// /// 全等 /// AllEqual, /// /// 一二相等 /// OneTwo, /// /// 一三相等 /// OneThree, /// /// 二三相等 /// TwoThree } }