In terms of the type system, there is no difference. For example this code will output true :
int? myInteger = 123;
Console.WriteLine(myInteger is Nullable<int>);
Infact, depending on your version of C#, it will actually suggest that you can simplify the call to Nullable<int> to just be int?