You can get the location with
mapView.userLocation
So, to set the mapView's center with it:
MKCoordinateRegion region;
MKCoordinateSpan span;
span.latitudeDelta=0.02 / 10; // zoom level
span.longitudeDelta=0.02 / 10;
CLLocationCoordinate2D location;
location.latitude = mapView.userLocation.coordinate.latitude;
location.longitude = mapView.userLocation.coordinate.longitude;
region.span=span;
region.center=location;
[mapView setRegion:region animated:TRUE];
[mapView regionThatFits:region];
Then, you can hide the blue dot with:
[mapView setShowUserLocation:NO];
Not sure what the actual MonoTouch equivalent to this Objective-C code is, but it should be named similarly.