You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
for( var i = 0 ; i < 5 ; i ++ )
Console.WriteLine("├".PadRight(79, '─') + "┤");
Console.WriteLine( "");
Console.WriteLine( "Using Literal");
for( var i = 0 ; i < 5 ; i ++ )
Console.WriteLine("├──────────────────────────────────────────────────────────────────────────────┤");
Console.WriteLine( "");
Console.WriteLine( "Using StringBuilder");
var sb = new System.Text.StringBuilder();
for( var i = 0 ; i < 5 ; i ++ )
sb.AppendLine( "├".PadRight(79, '─') + "┤" );
Console.Write( sb.ToString() );
}
???? characters appear in the Debug Console output ( assume its unmapped unicode chars)
Issue Type: Bug
Issue Type: Bug
using something like the code below to output symbols ( above ascii 128 )
static void Main(string[] args)
{
Console.WriteLine( "Using PadRight" );
}
???? characters appear in the Debug Console output ( assume its unmapped unicode chars)
Using PadRight
2 <--- dupe row indicator
├──────────────────────────────────────────────────────────────────────────────┤
├───��──────────────────────────────────────────────────────────────────────────┤
├────────���─────────────────────────────────────────────────────────────────────┤
├──────────────────────────────────────────────────────────────────────────────┤
Using Literal
├──────────────────────────────────────────────────────────────────────────────┤
├────────────────��─────────────────────────────────────────────────────────────┤
├─────────────────────���────────────────────────────────────────────────────────┤
├──────────────────────────────────────────────────────────────────────────────┤
├──────────────────────────────��───────────────────────────────────────────────┤
Using StringBuilder
├──────────────────────────────────────────────────────────────────────────────┤
├───��──────────────────────────────────────────────────────────────────────────┤
├────────���─────────────────────────────────────────────────────────────────────┤
├──────────────────────────────────────────────────────────────────────────────┤
├─────────────────��────────────────────────────────────────────────────────────┤
I tried different fonts etc - but the ? still appears
Running the same code in an C#/Notebook cell produces the correct output.
Equivalent Javascript produces the correct output
I also notice there is somesort of pattern to gliches, almost like a number of bytes read anomaly
Extension version: 1.23.9
VS Code version: Code 1.53.2 (622cb03f7e070a9670c94bae1a45d78d7181fbd4, 2021-02-11T11:48:04.245Z)
OS version: Windows_NT x64 10.0.19042
System Info
gpu_compositing: enabled
multiple_raster_threads: enabled_on
oop_rasterization: enabled
opengl: enabled_on
protected_video_decode: unavailable_off
rasterization: enabled
skia_renderer: enabled_on
video_decode: enabled
vulkan: disabled_off
webgl: enabled
webgl2: enabled
A/B Experiments
The text was updated successfully, but these errors were encountered: