Base:
property
IsStatic
Microsoft.CodeAnalysis.CSharp.Symbol.IsStatic
7 references to IsStatic
Microsoft.CodeAnalysis.CSharp (7)
Binder\Binder_Expressions.cs (1)
1473var implicitReceiver = field.IsStatic ? null : ThisReference(node, field.ContainingType, wasCompilerGenerated: true);
Symbols\Source\FieldSymbolWithAttributesAndModifiers.cs (2)
181if (this.IsStatic || this.IsConst) 335else if (!this.IsStatic && !this.IsConst)
Symbols\Source\SourceFieldSymbol.cs (2)
64else if (containingType.IsStatic && !IsStatic) 68else if (!IsStatic && !IsReadOnly && containingType.IsReadOnly)
Symbols\Source\SourceMemberFieldSymbol.cs (2)
66else if (type.IsRefLikeOrAllowsRefLikeType() && (this.IsStatic || !containingType.IsRefLikeType)) 361if (this.IsStatic)