c#里的各种小问题及找到的答案

1、从数据库里取出来的Null值转字符串的时候报错

         string  content =  string .Empty;
         if  (title != System.DBNull.Value)
        
              content =title.ToString();
         }


2、




你可能感兴趣的:(c#里的各种小问题及找到的答案)