[Modify] Polish it

This commit is contained in:
sta 2022-01-28 20:21:34 +09:00
parent 5c7c3e171b
commit 750c71e1be

View File

@ -51,7 +51,10 @@ namespace Example3
protected override void OnMessage (MessageEventArgs e)
{
Sessions.Broadcast (String.Format ("{0}: {1}", _name, e.Data));
var fmt = "{0}: {1}";
var msg = String.Format (fmt, _name, e.Data);
Sessions.Broadcast (msg);
}
protected override void OnOpen ()