Hi

i want to set the following
int xxx = null; // this is not allowed

i want to pass a null value to a method like this

setvalue("Hello world ", null); // to the following, it does not work,

private void setvalue(string s1, int iVal)
{

}

Barry...