C# Func delegate with params type
- by Sarah Vessels
How, in C#, do I have a Func parameter representing a method with this signature?
XmlNode createSection(XmlDocument doc, params XmlNode[] childNodes)
I tried having a parameter of type Func<XmlDocument, params XmlNode[], XmlNode> but, ooh, ReSharper/Visual Studio 2008 go crazy highlighting that in red.