User774 postedYou can add a "tap" gesture recognizer to the label and have it execute a call to OpenUrl() on UIApplication:
UITapGestureRecognizer tap = new UITapGestureRecognizer(
() => UIApplication.SharedApplication.OpenUrl(new NSUrl("tel:" + label.Text))
);
label.AddGestureRecognizer(tap);