CSPspEmu.Core.Audio.AudioAlsaImpl.Assert C# (CSharp) Method

Assert() private static method

private static Assert ( string Function, int Value ) : void
Function string
Value int
return void
        private static void Assert(string Function, int Value)
        {
            Console.WriteLine("Alsa.{0} : {1}", Function, Value);
            //if (Value < 0) throw(new Exception(String.Format("Alsa error({0}) calling function '{1}'", Value, Function)));
        }