I need to know how to convert an int to a nullable int. However, I keep getting an error \"The binary operator Equal is not defined for the types \'System.Nullable`1[System.
Does something simpler like this not work?
int i; int? temp = int.TryParse(, out i) ? (int?)i : null;