mirror of
https://github.com/danbulant/Cosmos
synced 2026-05-19 20:39:01 +00:00
32 lines
No EOL
776 B
C#
32 lines
No EOL
776 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
using Cosmos.Build.Windows;
|
|
|
|
namespace MatthijsTest {
|
|
class Program {
|
|
#region Cosmos Builder logic
|
|
// Most users wont touch this. This will call the Cosmos Build tool
|
|
[STAThread]
|
|
static void Main(string[] args) {
|
|
var xBuilder = new Builder();
|
|
xBuilder.Build();
|
|
}
|
|
#endregion
|
|
|
|
public static void Init() {
|
|
DoTest();
|
|
|
|
Console.WriteLine("Tests completed, Halting system now");
|
|
while (true)
|
|
;
|
|
}
|
|
|
|
private static void DoTest() {
|
|
SortedList<string, string> xTest = new SortedList<string, string>(StringComparer.InvariantCultureIgnoreCase);
|
|
xTest.Add("key1", "value1");
|
|
xTest.Add("key2", "value2");
|
|
Console.WriteLine("Done!");
|
|
}
|
|
}
|
|
} |