Tại sao tôi gặp Lỗi "Loại 'chuỗi' phải là loại giá trị không thể rỗng để sử dụng nó làm tham số 'T' trong loại chung hoặc phương thức 'System.Nullable'"?
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
đã là nullable.