| File: Microsoft\CSharp\RuntimeBinder\Semantics\Tree\TypeOf.cs | Web Access |
| Project: src\runtime\src\libraries\Microsoft.CSharp\src\Microsoft.CSharp.csproj (Microsoft.CSharp) |
// Licensed to the .NET Foundation under one or more agreements. // The .NET Foundation licenses this file to you under the MIT license. using System.Diagnostics.CodeAnalysis; namespace Microsoft.CSharp.RuntimeBinder.Semantics { internal sealed class ExprTypeOf : ExprWithType { public ExprTypeOf(CType type, CType sourceType) : base(ExpressionKind.TypeOf, type) { Flags = EXPRFLAG.EXF_CANTBENULL; SourceType = sourceType; } public CType SourceType { get; } public override object Object { [RequiresUnreferencedCode(Binder.TrimmerWarning)] get => SourceType.AssociatedSystemType; } } }