Spring.Reflection.Dynamic.MethodTarget.MethodWithOutParameter C# (CSharp) Method

MethodWithOutParameter() public method

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