Просто нужно добавить NSMutableAttributedString, вот так
var attrString = new NSMutableAttributedString(button.TitleLabel.Text);
attrString.AddAttribute(UIStringAttributeKey.UnderlineStyle,NSNumber.FromInt32((int)NSUnderlineStyle.Single),new NSRange(0, attrString.Length));
button.TitleLabel.AttributedText = attrString;