C
Cor Ligthert[MVP]
Tom,I'm not sure I'm understanding you at all... stringA == null is
perefectly
valid in C#..
I see that you are Partially right and wrong (Like me)
private string a;
method()
{
if (a == null) MessageBox.Show(a);
}
Goes
But I tried it always like this
string a;
if (a == null) MessageBox.Show(a);
This wont work because it telss that a is not initialized.
That was were my message was about.
Sorry everybody, I should not have posted this in the VB language newsgroup.
Cor