| Author |
open braces
|
spars anu
Greenhorn
Joined: May 26, 2011
Posts: 11
|
|
playerManagementClient.AddPlayerNote(new AddPlayerNoteRequest(new AddPlayerNoteRequestEnvelope
What does this mean?What does this open braces represent?
|
 |
Matthew Brown
Bartender
Joined: Apr 06, 2010
Posts: 3791
|
|
The braces are C#'s property initialiser syntax. So you're creating a AddPlayerNoteRequestEnvelope object, and initialising some of its properties (PlayerIx and Note) at the same time.
|
 |
 |
|
|
subject: open braces
|
|
|