mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-26 03:29:00 +01:00
Include C# textmate grammar. Fixes #19469
This commit is contained in:
17
extensions/csharp/test/colorize-fixtures/test.cs
Normal file
17
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
extensions/csharp/test/colorize-results/test_cs.json
Normal file
1377
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