Spring.Reflection.Dynamic.MethodTarget.MethodWithOutParameter C# (CSharp) 메소드

MethodWithOutParameter() 공개 메소드

public MethodWithOutParameter ( string lower, string &upper ) : void
lower string
upper string
리턴 void
        public void MethodWithOutParameter(string lower, out string upper)
        {
            upper = lower.ToUpper();
        }