StaticEcho() 공개 정적인 메소드

public static StaticEcho ( string value ) : string
value string
리턴 string
        private void AssertStaticMethod(Foo target)
        {
            object result = Dispatch(target, typeof(Foo), "StaticEcho", "Hello");

            Assert.AreEqual(Foo.StaticEcho("Hello"), result);
        }