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

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // begin
            var status = (Status)64;
            var defined = Enum.IsDefined(typeof(Status), status);
            if (defined)
                Console.WriteLine("Allocation!");
            // end

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