So I have a NSTextfield in Xcode and I am trying to grab the input text and save it as an integer in C# (working with Xamarin). I have spent the whole day looking for a solution, but failed.
Hour1 is the name of my textfield. I can't do like "Hour1.text". Can you help me?
int H1 = Convert.ToInt16(???);