DarkEmu_GameServer.Systems.cRound C# (CSharp) Метод

cRound() публичный статический Метод

public static cRound ( bool b ) : bool
b bool
Результат bool
        public static bool cRound(bool[] b)
        {
            try
            {
                foreach (bool bol in b)
                {
                    if (!bol) return true;
                }
            }
            catch (Exception ex)
            {
                Systems.Debugger.Write(ex);
            }
            return false;
        }
Systems