Compiler Error CS1665
Fixed size buffers must have a length greater than zero
This error occurs if a fixed size buffer is declared with a zero or negative size. The length of a fixed size buffer must be a positive integer.
The following sample generates CS1665.
C#
// CS1665.cs
// compile with: /unsafe /target:library
struct S
{
public unsafe fixed int A[0]; // CS1665
}
Collaborate with us on GitHub
The source for this content can be found on GitHub, where you can also create and review issues and pull requests. For more information, see our contributor guide.
.NET feedback
.NET is an open source project. Select a link to provide feedback: