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

Run() public static method

public static Run ( ) : void
return void
        public static void Run()
        {
            // begin
            var key = new Key { Value = 42 };
            var result = typeof(string).IsByRef
                ? key.Value.GetHashCode()
                : key.GetHashCode();
            // end

            Logger.Log("Result: {0}", result);
        }
Answer2