mirror of
https://github.com/microsoft/monaco-editor.git
synced 2025-12-22 13:55:41 +01:00
Initial release
This commit is contained in:
parent
90042b4f97
commit
896c60a8b9
60 changed files with 36730 additions and 2 deletions
23
test/samples/sample.csharp.txt
Normal file
23
test/samples/sample.csharp.txt
Normal file
|
|
@ -0,0 +1,23 @@
|
|||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Diagnostics;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace VS
|
||||
{
|
||||
class Program
|
||||
{
|
||||
static void Main(string[] args)
|
||||
{
|
||||
ProcessStartInfo si = new ProcessStartInfo();
|
||||
float load= 3.2e02f;
|
||||
|
||||
si.FileName = @"tools\\node.exe";
|
||||
si.Arguments = "tools\\simpleserver.js";
|
||||
|
||||
Process.Start(si);
|
||||
}
|
||||
}
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue