Possible Duplicate:
C# Nullable<int> vs. int?: Is there any difference?
When using NMG( Nhibernate Mapping generator) when the nullable type are converted I got them as System.Nullable<decimal>
whereas by using Visual Nhibernate trail pack I got the nullable types as decimal?
I know what is decimal? does, it is accepted with out throwing errors in case of null values in non-technical terms.
But I could not find out if there is any difference between decimal? and System.Nullable<decimal>
or not?