I've encountered an issue with ShowMissingComponent.
Here's my case:
Visual Studio 2012 for Windows 8
```
/// <summary>
/// Byte List To Byte Array.
/// </summary>
/// <param name="inBytes">Byte List</param>
/// <returns>Byte Array</returns>
public static byte[] ToByteArray(IList<byte> inBytes)
{
return new List<byte>(inBytes).ToArray();
}
```
XML:
```
<?xml version="1.0"?>
<doc>
<assembly>
<name>WindowsRuntimeComponent</name>
</assembly>
<members>
<member name="T:WindowsRuntimeComponent.ByteUtil">
<summary>
Byte Utility Class.
</summary>
</member>
<member name="M:WindowsRuntimeComponent.ByteUtil.ToByteArray(System.Collections.Generic.IList{System.Byte})">
<summary>
Byte List To Byte Array.
</summary>
<param name="inBytes">Byte List</param>
<returns>Byte Array</returns>
</member>
</members>
</doc>
```
SHFB output log:
```
BuildAssembler : warning : ShowMissingComponent: [M:WindowsRuntimeComponent.ByteUtil.ToByteArray(Windows.Foundation.Collections.IVector{System.Byte})] Missing <summary> documentation [C:\Users\k\Documents\Help\Working\BuildReferenceTopics.proj]
BuildAssembler : warning : ShowMissingComponent: [M:WindowsRuntimeComponent.ByteUtil.ToByteArray(Windows.Foundation.Collections.IVector{System.Byte})] Missing <returns> documentation [C:\Users\k\Documents\Help\Working\BuildReferenceTopics.proj]
BuildAssembler : warning : ShowMissingComponent: [M:WindowsRuntimeComponent.ByteUtil.ToByteArray(Windows.Foundation.Collections.IVector{System.Byte})] Missing <param name="inBytes"/> documentation [C:\Users\k\Documents\Help\Working\BuildReferenceTopics.proj]
```
Comments: ** Comment from web user: EWoodruff **
Please note the member IDs in the warnings. They are unrelated to the member you posted above:
M:WindowsRuntimeComponent.ByteUtil.ToByteArray(Windows.Foundation.Collections.IVector{System.Byte})
That is not ToByteArray(**IList<byte>** inBytes). You need to find the member it's complaining about which is not that one unless the compiler is translating it somehow behind the scenes. If that's the case, what framework version and project type are you using?