Possible Duplicate:
What do two question marks together mean in C#?
can any one explain this syntax.
protected string CompanyProductSeriesId
{
get
{
return Request.QueryString["CPGId"]
?? (ViewState["CPSId"] == null
? ""
: ViewState["CPGId"].ToString());
}
}
I want to under stand the ?? in this syntax.