Mono.Cecil.Tests.MethodBodyTests.PrintStringEmpty C# (CSharp) Method

PrintStringEmpty() private method

private PrintStringEmpty ( ) : void
return void
        public void PrintStringEmpty()
        {
            TestIL ("hello.il", module => {
                var foo = module.GetType ("Foo");
                Assert.IsNotNull (foo);

                var print_empty = foo.GetMethod ("PrintEmpty");
                Assert.IsNotNull (print_empty);

                AssertCode (@"
            .locals ()
            IL_0000: ldsfld System.String System.String::Empty
            IL_0005: call System.Void System.Console::WriteLine(System.String)
            IL_000a: ret
            ", print_empty);
            });
        }