[Modify] Add a null check

This commit is contained in:
sta 2022-01-27 21:17:01 +09:00
parent d6a98c3f63
commit 5c7c3e171b

View File

@ -40,6 +40,9 @@ namespace Example2
protected override void OnClose (CloseEventArgs e)
{
if (_name == null)
return;
var fmt = "{0} got logged off...";
var msg = String.Format (fmt, _name);