Bind.FuncProcessor.WrapReturnType C# (CSharp) Method

WrapReturnType() static private method

static private WrapReturnType ( Function func ) : void
func Function
return void
        static void WrapReturnType(Function func)
        {
            switch (func.ReturnType.WrapperType)
            {
                case WrapperTypes.StringReturnType:
                    func.ReturnType.QualifiedType = "String";
                    break;
            }
        }