Compiler Error C3753
Visual Studio 2015
The new home for Visual Studio documentation is Visual Studio 2017 Documentation on docs.microsoft.com.
The latest version of this topic can be found at Compiler Error C3753.
a generic property is not allowed
Generic parameter lists can only appear on managed classes, structs, or functions.
For more information, see Generics and property.
The following sample generates C3753.
// C3753.cpp
// compile with: /clr /c
ref struct A {
generic <typename T>
property int i; // C3753 error
};
Show: