AK.F1.Timing.Utility.HashCodeBuilderTest.to_string_returns_string_representation_of_hashcode C# (CSharp) Метод

to_string_returns_string_representation_of_hashcode() приватный Метод

private to_string_returns_string_representation_of_hashcode ( ) : void
Результат void
        public void to_string_returns_string_representation_of_hashcode()
        {
            var builder = HashCodeBuilder.New().Add(0).Add(1);

            Assert.Equal(builder.GetHashCode().ToString(), builder.ToString());
        }