为什么会出现错误“类型'string'必须是不可为空的值类型,以便在通用类型或方法'System.Nullable'中将其用作参数'T'”?
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data;
using System.Diagnostics;
using Universe;
namespace Universe
{
    public class clsdictionary
    {
      private string? m_Word = "";
      private string? m_Meaning = "";
      string? Word { 
          get { return m_Word; }
          set { m_Word = value; }
      }
      string? Meaning { 
          get { return m_Meaning; }
          set { m_Meaning = value; }
      }
    }
}
String已经可以为空。