Neden "" dize "türünün, genel tür veya yöntem" System.Nullable '"parametresinde' T 'parametresi olarak kullanılabilmesi için null değeri olmayan bir değer türü olması gerekir?
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
zaten geçersiz.