Windows-powershell / PowerShell-master /src /System.Management.Automation /FormatAndOutput /common /DisplayDatabase /displayDescriptionData_Misc.cs
| // Copyright (c) Microsoft Corporation. | |
| // Licensed under the MIT License. | |
| // this file contains the data structures for the in memory database | |
| // containing display and formatting information | |
| namespace Microsoft.PowerShell.Commands.Internal.Format | |
| { | |
| /// <summary> | |
| /// In line definition of a format string control. | |
| /// </summary> | |
| internal sealed class FieldControlBody : ControlBody | |
| { | |
| internal FieldFormattingDirective fieldFormattingDirective = new FieldFormattingDirective(); | |
| } | |
| } | |