I have come across some syntax I've never seen before; can someone explain the syntax of line 2 in the following code, specifically the =]
bits?
//decide what to do with the response we get back from the bridge
client.UploadStringCompleted += (o, args) =] Dispatcher.BeginInvoke(() =]
{
try
{
ResponseTextBox.Text = args.Result;
}
catch (Exception ex)
{
ResponseTextBox.Text = ex.Message;
}
});
Unfortunately, web searches don't seem to parse =]
, which is frustrating my attempts to find an explanation!