Fix a few for Example3

This commit is contained in:
sta
2014-04-01 15:20:50 +09:00
parent b4eb9ead87
commit 0cb2335b48
3 changed files with 7 additions and 6 deletions

View File

@@ -10,8 +10,8 @@ namespace Example3
{
var name = Context.QueryString ["name"];
var msg = !name.IsNullOrEmpty ()
? String.Format ("'{0}' to {1}", e.Data, name)
: e.Data;
? String.Format ("'{0}' to {1}", e.Data, name)
: e.Data;
Send (msg);
}