#nullable enable
string? ms = default;
string s;
if (ms is null)
s = "";
else
s = ms;
string? ms2 = default;
string s2 = ms2;