1 write to Text
Microsoft.CSharp (1)
Microsoft\CSharp\RuntimeBinder\Syntax\Names.cs (1)
10
Text
= text;
15 references to Text
Microsoft.CSharp (15)
Microsoft\CSharp\RuntimeBinder\Errors\UserStringBuilder.cs (2)
116
ErrAppendString(name.
Text
);
568
psz = parg.name.
Text
;
Microsoft\CSharp\RuntimeBinder\RuntimeBinder.cs (2)
629
ExprMemberGroup pMemGroup = CreateMemberGroupExpr(property.name.
Text
, null, callingObject, SYMKIND.SK_PropertySymbol);
641
ExprMemberGroup memgroup = CreateMemberGroupExpr(index.name.
Text
, null, callingObject, SYMKIND.SK_PropertySymbol);
Microsoft\CSharp\RuntimeBinder\Semantics\MemberLookup.cs (2)
147
(!symCur.name.
Text
.StartsWith("set_", StringComparison.Ordinal) || meth.Params.Count <= 1) &&
148
(!symCur.name.
Text
.StartsWith("get_", StringComparison.Ordinal) || meth.Params.Count <= 0))
Microsoft\CSharp\RuntimeBinder\Semantics\Tree\Visitors\ExpressionTreeRewriter.cs (1)
814
Expr create = GenerateParameter(local.name.
Text
, local.GetType());
Microsoft\CSharp\RuntimeBinder\SymbolTable.cs (2)
1140
if (pi.Name == property.
Text
)
1321
if (m.Name == methodName.
Text
&& m.DeclaringType == t)
Microsoft\CSharp\RuntimeBinder\Syntax\Names.cs (1)
15
public override string ToString() =>
Text
;
Microsoft\CSharp\RuntimeBinder\Syntax\NameTable.cs (5)
40
if (e.HashCode == hashCode && e.Name.
Text
.Equals(key))
54
if (e.HashCode == hashCode && Equals(e.Name.
Text
, key, length))
65
int hashCode = ComputeHashCode(name.
Text
);
67
Debug.Assert(Array.TrueForAll(_entries, e => e?.Name.
Text
!= name.
Text
));