Merge commit 'be3e8236086165e5e45a5a10783823874b3f3ebd' as 'lib/vscode'
This commit is contained in:
17
lib/vscode/extensions/csharp/test/colorize-fixtures/test.cs
Normal file
17
lib/vscode/extensions/csharp/test/colorize-fixtures/test.cs
Normal file
@ -0,0 +1,17 @@
|
||||
using System;
|
||||
namespace SampleNamespace
|
||||
{
|
||||
class TestClass
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
int[] radii = { 15, 32, 108, 74, 9 };
|
||||
const double pi = 3.14159;
|
||||
foreach (int radius in radii) {
|
||||
double circumference = pi * (2 * radius);
|
||||
// Display the number of command line arguments:
|
||||
System.Console.WriteLine("Circumference = {0:N2}", circumference);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
1377
lib/vscode/extensions/csharp/test/colorize-results/test_cs.json
Normal file
1377
lib/vscode/extensions/csharp/test/colorize-results/test_cs.json
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user