Files
basic-computer-games/84_Super_Star_Trek/csharp/Commands/CommandExtensions.cs
2022-03-22 17:55:44 +11:00

14 lines
349 B
C#

using System.Reflection;
using System.ComponentModel;
namespace SuperStarTrek.Commands;
internal static class CommandExtensions
{
internal static string GetDescription(this Command command) =>
typeof(Command)
.GetField(command.ToString())
.GetCustomAttribute<DescriptionAttribute>()
.Description;
}