Abc.NCrafts.Quizz.Questions._027.Answer2.Run C# (CSharp) Méthode

Run() public static méthode

public static Run ( ) : void
Résultat 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