Use a nullable int. The syntax is:
int? i = 0;
i = null;
// etc.
This is a System.Nullable<int>

Signature
HTH,
Kevin Spencer
Microsoft MVP
Bit Player
http://unclechutney.blogspot.com
Expect the unaccepted.
> Hello,
> I'm developing in C++/CLI and using a DataGridView that is bound to a
[quoted text clipped - 13 lines]
> Thanks
> Maik Wiege
maik.wiege@googlemail.com - 13 Dec 2006 14:24 GMT
Thanks Kevin,
I didn't want to do that, bacause than I have to rewrite many parts in
my code and I'm having some perfomancy doubts about it, but it seems
that it is my only chance.
Thanks again
Maik
Kevin Spencer schrieb:
> Use a nullable int. The syntax is:
>
[quoted text clipped - 32 lines]
> > Thanks
> > Maik Wiege