Bennie,
With Proj4Projection, you can go from one projection to another and vice versa. First, you need to know how you set the internal and the external projection. You have to think logically about your internal and external projections and use the ConvertToInternalProjection or the ConvertToExternalProjection to go one way or another.
I recommend you look at the sample GPS to Google Map wiki.thinkgeo.com/wiki/Map_Suite_De...Desktop.29. You will a very good and common example on how to go from decimal degrees to Google Map.
//Sets the projection parameters to go from Geodetic (EPSG 4326) or decimal degrees to Google Map projection (Spherical Mercator).
Proj4Projection proj4 = new Proj4Projection();
proj4.InternalProjectionParametersString = Proj4Projection.GetEpsgParametersString(4326);
proj4.ExternalProjectionParametersString = Proj4Projection.GetGoogleMapParametersString();
proj4.Open();
//Here we go from decimal degrees to Google Map projection
Vertex projVertex = proj4.ConvertToExternalProjection(Longitude, Latitude);
//Here we go from Google Map projection to decimnal degrees
Vertex decimalDegreesVertex = proj4.ConvertToInternalProjection(projVertex.X, projVertex.Y);
proj4.Close();