1 instantiation of VoidType
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Semantics\Types\VoidType.cs (1)
14
public static readonly VoidType Instance = new
VoidType
();
9 references to VoidType
Microsoft.CSharp (9)
Microsoft\CSharp\RuntimeBinder\Semantics\ExplicitConversion.cs (1)
771
if (_typeSrc is
VoidType
)
Microsoft\CSharp\RuntimeBinder\Semantics\ExpressionBinder.cs (1)
431
Debug.Assert(pResult.Type ==
VoidType
.Instance);
Microsoft\CSharp\RuntimeBinder\Semantics\ImplicitConversion.cs (1)
524
if (_typeDest is PointerType ptDest && ptDest.ReferentType ==
VoidType
.Instance)
Microsoft\CSharp\RuntimeBinder\Semantics\MethodTypeInferrer.cs (1)
245
!(pType is NullType) && !(pType is
VoidType
) && !(pType is MethodGroupType);
Microsoft\CSharp\RuntimeBinder\Semantics\PredefinedMembers.cs (1)
254
return
VoidType
.Instance;
Microsoft\CSharp\RuntimeBinder\Semantics\SemanticChecker.cs (1)
95
Debug.Assert(type is
VoidType
|| type is TypeParameterType);
Microsoft\CSharp\RuntimeBinder\Semantics\Types\TypeManager.cs (1)
632
Debug.Assert(!(typeSrc is
VoidType
) && !(typeSrc is TypeParameterType));
Microsoft\CSharp\RuntimeBinder\Semantics\Types\VoidType.cs (1)
14
public static readonly
VoidType
Instance = new VoidType();
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (1)
1446
methodSymbol.RetType =
VoidType
.Instance;