Mono.Cecil.Tests.MethodBodyTests.MethodSpec C# (CSharp) Méthode

MethodSpec() private méthode

private MethodSpec ( ) : void
Résultat void
        public void MethodSpec()
        {
            TestIL ("methodspecs.il", module => {
                var tamtam = module.GetType ("Tamtam");

                var bar = tamtam.GetMethod ("Bar");
                Assert.IsNotNull (bar);

                AssertCode (@"
            .locals ()
            IL_0000: ldc.i4.2
            IL_0001: call System.Void Tamtam::Foo<System.Int32>(TFoo)
            IL_0006: ret
            ", bar);
            });
        }