RGB LCD and porting to netduino

Hi All

I’m trying to port the arduino driver provided for this over to Netduino and have got everything working except for actually writing characters to the screen. I have full backlight control and have the LCD initialized properly but the arduino driver includes this

#include "Print.h"

and

  using Print::write;

in the header file. The actual driver has a “write” function, but I have no idea how it interacts with these two statements and where I need to go to find the actual code that converts my “hello world” message into bytes that are then sent over the I2C bus. I’ve tried using the included write function but that doesn’t get me any output.

Can anyone point me in the right direction?

Thanks