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.
int test = 0; // set int int? num = test; // convert test to a nullable int num = null; // set num as null