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.
Typically, you convert an int an int? using a cast.
int
int?
int? myNullable = (int?) 15; int myInt = (int) myNullable;