T
TonyJ
Hello!
I have downloaded a project from the site "The code project" but I get the
following 3 compile error.
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(548): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.nLength'
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(550): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.lpSecurityDescriptor'
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(551): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.bInheritHandle'
Here is the code where the error appears.
#region Comments
/// <summary>
/// Security Attributes structure.
/// </summary>
#endregion
[StructLayout(LayoutKind.Sequential)]
public struct SECURITY_ATTRIBUTES
{
public int nLength; // this and the next two is
it a complaint about
public IntPtr lpSecurityDescriptor;
public bool bInheritHandle;
}
How you any idea how I get rid of these compile errors?
//Tony
I have downloaded a project from the site "The code project" but I get the
following 3 compile error.
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(548): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.nLength'
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(550): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.lpSecurityDescriptor'
C:\tony\IPC\AppModule.NamedPipes\NamedPipeNative.cs(551): Missing XML
comment for publicly visible type or member
'AppModule.NamedPipes.SECURITY_ATTRIBUTES.bInheritHandle'
Here is the code where the error appears.
#region Comments
/// <summary>
/// Security Attributes structure.
/// </summary>
#endregion
[StructLayout(LayoutKind.Sequential)]
public struct SECURITY_ATTRIBUTES
{
public int nLength; // this and the next two is
it a complaint about
public IntPtr lpSecurityDescriptor;
public bool bInheritHandle;
}
How you any idea how I get rid of these compile errors?
//Tony