Код: Выделить всё
public class FieldDefinition
{
public FieldDefinition(string name, TypeCode code)
{
Name = name;
Code = code;
}
public string Name { get; }
public TypeCode Code { get; }
}
Код: Выделить всё
PS ~Debug> Get-Field
Name : Session
Code : Int64
Name : Instance
Code : String
Код: Выделить всё
PS ~Debug> Get-Field | Format-Table
Name Code
---- ----
Session Int64
Instance String
Мобильная версия