nDoc version 1.3.1
Framework version 1.1
Issue:
When an array is passed into a method nDoc extracts the method as Class.Method(System.Byte[]) but in VB.net arrays use parens Class.Method(System.Byte()) so it does not find the tags for the the method. I am not sure if this is a nDoc issue or a VBCommenter issue as the XML produced when the project is built contains the parens. See example below:
<member name="M:DOM.Delivery.ARM.Utilities.FileUtilities.FileWriter.WriteFile(System.Byte())">
if I change the System.Byte() to System.Byte[] nDoc pulls the information perfectly.