6
What do the question marks on that get.
What do they mean int? and ?? in this line of code, I have already found examples that used ? and ?? but never so many in a single line and this gets a little messy.
public int Something
{
get { return (this.parameters["Loading"] as int?) ?? 1; }
}