Bind.JavaSpecWriter.WriteMethodBody C# (CSharp) Method

WriteMethodBody() static private method

static private WriteMethodBody ( BindStreamWriter sw, System.Function f ) : void
sw BindStreamWriter
f System.Function
return void
        static void WriteMethodBody(BindStreamWriter sw, Function f)
        {
            //var callstring = f.Parameters.CallString();
            //if (f.ReturnType != null && !f.ReturnType.ToString().ToLower().Contains("void"))
            //    sw.WriteLine("return GLES20.{0}{1};", f.WrappedDelegate.Name, callstring);
            //else
            //    sw.WriteLine("GLES20.{0}{1};", f.WrappedDelegate.Name, callstring);
        }