Appspotdemo.Mono.Droid.AppRTCDemoActivity.abortUnless C# (CSharp) Метод

abortUnless() приватный статический Метод

private static abortUnless ( bool condition, string msg ) : void
condition bool
msg string
Результат void
        private static void abortUnless(bool condition, string msg)
        {
            if (!condition)
            {
                throw new Exception(msg);
            }
        }