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