Quite often when using Xamarin.iOS (MonoTouch) you will find yourself having to port objective-c samples to C#. One thing that has always bothered me is when I find a line like this.
myTextView.delegate = self;
The solution I always go for is
myTextView.Delegate = this;
But this will cause