首页 > 代码库 > .Net 基础总结篇

.Net 基础总结篇

1, int? id 表示 id是可以为null 的整型 跟Nullable<int> id 是一样的
    id ?? 1等于 id==null?1:id;

          技术分享

 

.Net 基础总结篇