C#: Add test for known sources telemetry query.

This commit is contained in:
Michael Nebel
2022-03-08 10:56:24 +01:00
parent 1f1059bfc6
commit 18b1b51d07
3 changed files with 15 additions and 0 deletions

View File

@@ -0,0 +1,12 @@
using System;
public class SupportExternalSources
{
public void M1()
{
var l1 = Console.ReadLine(); // Known source.
var l2 = Console.ReadLine(); // Known source.
Console.SetError(Console.Out);
var x = Console.Read(); // Know source.
}
}