Generic ClassT1, T2Property Property
This is a property that gets or sets an instance of the type specified
by the generic type argument T1.
Definition
Namespace: XMLCommentsExamples
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
Assembly: XMLCommentsExamples (in XMLCommentsExamples.dll) Version: 2025.4.26.0
C#
public T1 Property { get; set; }VB
Public Property Property As T1
Get
SetC++
public:
property T1 Property {
T1 get ();
void set (T1 value);
}F#
member Property : 'T1 with get, set