> From: [email protected] [mailto:mono-list- > [email protected]] On Behalf Of [email protected] > > What is the recommended way to create an instance of a nullable type, such > as System.Nullable<int64>? > > I would prefer a method that used the embedded API as opposed to a C# > helper method.
Because this seems so simple, I wonder if I'm misunderstanding the question in some way... You can just use the question mark. int? foo = null; _______________________________________________ Mono-list maillist - [email protected] http://lists.ximian.com/mailman/listinfo/mono-list
