AK.F1.Timing.Serialization.PropertyDescriptorCollectionTest.get_by_id_returns_null_if_no_property_exists_with_specified_id C# (CSharp) Метод

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

private get_by_id_returns_null_if_no_property_exists_with_specified_id ( ) : void
Результат void
        public void get_by_id_returns_null_if_no_property_exists_with_specified_id()
        {
            var collection = new PropertyDescriptorCollection(new PropertyDescriptor[0]);

            Assert.Null(collection.GetById(5));
        }