RatioMaster_source.RM.ItoB C# (CSharp) Method

ItoB() static private method

static private ItoB ( int param ) : bool
param int
return bool
        internal static bool ItoB(int param)
        {
            if (param == 0) return false;
            if (param == 1) return true;
            return true;
        }