"일반 형식 또는 메서드 'System.Nullable'에서 매개 변수 'T'로 사용하려면 'string'형식이 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
이미 nullable입니다.