Hi,
I would like to have a public string which will return a "" if the parameter
is a Null string, would someone tell me what's wrong with my code?
public string NoNull(string strNoNull)
{
if (strNoNull==nul l)
{
return "";
}
else
{
strNoNull=strNo Null;
}
Thanks for help.
Jason
I would like to have a public string which will return a "" if the parameter
is a Null string, would someone tell me what's wrong with my code?
public string NoNull(string strNoNull)
{
if (strNoNull==nul l)
{
return "";
}
else
{
strNoNull=strNo Null;
}
Thanks for help.
Jason
Comment