Shuxia Ning
2024-08-07 554694000f4d7ffc231a23e7ff429595c254ceaa
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
using DevExpress.Utils;
 
namespace IStation.Win
{
    public class DevHelper
    {
        /// <summary>
        /// 输入 <see cref="DefaultBoolean"/>
        /// </summary> 
        public static bool Tran(DefaultBoolean bol)
        {
            if (bol == DefaultBoolean.True)
                return true;
            else
                return false;
        }
    }
}