File: Microsoft\CSharp\RuntimeBinder\Syntax\Names.cs | Web Access |
Project: src\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. namespace Microsoft.CSharp.RuntimeBinder.Syntax { internal sealed class Name { public Name(string text) { Text = text; } public string Text { get; } public override string ToString() => Text; } } |