I have a function in my code that returns (string, string, string)
return (commonWord.Groups[0].Value, jlpt.Groups[0].Value, wanikaniLevel.Groups[0].Value);
What I would like is for it to return (int?, int?, string)
How can I convert a string to an int?