vote up 3 vote down star
    private string? typeOfContract
    {
      get { return (string?)ViewState["typeOfContract"]; }
      set { ViewState["typeOfContract"] = value; }
    }

Later in the code I use it like this:

    typeOfContract = Request.QueryString["type"];

I am getting the following error at the declaration of typeOfContract line stating "The type 'string' must be a non-nullable value type in order to use it as parameter 'T' in the generic type or method 'System.Nullable'"

Any ideas? Basically, I want to make sure that "type" exists in the queryString before performing an action.

Thanks in advance.

flag

4 Answers

vote up 14 vote down check

System.String is a reference type and already "nullable".

Nullable<T&gt> and the ? suffix are for value types such as Int32, Double, DateTime, etc.

link|flag
1  
Man i love this place... that was quick... thank you – Mike Fielden Oct 9 '08 at 14:07
One thing to note: Nullable<T> is a value type itself, but the "struct" generic type constraint only includes non-nullable value types - so you can't do Nullable<Nullable<int>>. – Jon Skeet Oct 9 '08 at 14:18
vote up 1 vote down

String is a reference type, so you don't need to (and cannot) use Nullable<T> here. Just declare typeOfContract as string and simply check for null after getting it from the query string. Or use String.IsNullOrEmpty if you want to handle empty string values the same as null.

link|flag
vote up 1 vote down

string cannot be the parameter to Nullable because string is not a value type. String is a reference type.

string s = null;

is a very valid statement and there is not need to make it nullable.

private string typeOfContract
    {
      get { return ViewState["typeOfContract"] as string; }
      set { ViewState["typeOfContract"] = value; }
    }

should work because of the as keyword.

link|flag
vote up 0 vote down

You are making it complicated. string is already nullable. You don't need to make it more nullable. Take out the ? on the property type.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.