Abc.NCrafts.Quizz.Questions._008.Answer2.Run C# (CSharp) Method

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // begin
            var status = (Status)6;
            var isDefined = (status & Status.S2) != 0;
            if (!isDefined)
                Console.WriteLine("Allocation!");
            // end

            Logger.Log("Status: {0}", status);
        }
Answer2