8 references to Unmanaged
Microsoft.CodeAnalysis.CSharp (8)
Binder\Binder_Constraints.cs (3)
204
if ((constraints & TypeParameterConstraintKind.
Unmanaged
) != 0)
272
constraints |= TypeParameterConstraintKind.
Unmanaged
;
541
else if ((constraints & TypeParameterConstraintKind.
Unmanaged
) != 0)
Symbols\Source\SourceTypeParameterSymbol.cs (2)
580
return (constraints & TypeParameterConstraintKind.
Unmanaged
) != 0;
761
return (constraints & TypeParameterConstraintKind.
Unmanaged
) != 0;
Symbols\Source\TypeParameterConstraintClause.cs (3)
32
/// Cannot be combined with <see cref="ReferenceType"/>, <see cref="ValueType"/> or <see cref="
Unmanaged
"/>.
59
AllValueTypeKinds = ValueType |
Unmanaged
,
64
AllNonNullableKinds = ReferenceType | ValueType | Constructor |
Unmanaged
| AllowByRefLike,