3 lines
203 B
PowerShell
3 lines
203 B
PowerShell
$coord = [System.Management.Automation.Host.Coordinates]::new(3, 6)
|
|
$rect = [System.Management.Automation.Host.Rectangle]::new($coord, $coord)
|
|
$char = $Host.UI.RawUI.GetBufferContents($rect).Character
|