There is a code where that reads something from the XML and loads it into dictionary.
Pls find the code below. I need to understand what new [] {header}
does.
what is new []
doing here.Thanks in advance.
var headers = _doc.GetElementsByTagName("Header");
var header = headers[0];
_dict.Add("Header_" + headerId, new [] {header});