Optional parameters in ASP.NET web service

前端 未结 2 1537
旧时难觅i
旧时难觅i 2020-12-11 16:09

I have a ASP.NET web service. This web service works fine. However, the WSDL lists some parameters as optional (minoccurs = 0) and others as non-optional. Some of the option

2条回答
  •  轮回少年
    2020-12-11 16:46

    The primitives are not reference types, but rather they are value types. You can make a value type "nullable" a couple ways.

    The short-hand is

    int? i;
    

    or long-hand here

    Nullable i;
    

提交回复
热议问题