8 references to Unmanaged
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Constraints.cs (3)
203if ((constraints & TypeParameterConstraintKind.Unmanaged) != 0) 271constraints |= TypeParameterConstraintKind.Unmanaged; 540else if ((constraints & TypeParameterConstraintKind.Unmanaged) != 0)
Symbols\Source\SourceTypeParameterSymbol.cs (2)
579return (constraints & TypeParameterConstraintKind.Unmanaged) != 0; 721return (constraints & TypeParameterConstraintKind.Unmanaged) != 0;
Symbols\Source\TypeParameterConstraintClause.cs (3)
33/// Cannot be combined with <see cref="ReferenceType"/>, <see cref="ValueType"/> or <see cref="Unmanaged"/>. 60AllValueTypeKinds = ValueType | Unmanaged, 65AllNonNullableKinds = ReferenceType | ValueType | Constructor | Unmanaged | AllowByRefLike,