using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace UnityExplorer.Tests { public static class TestClass { public static List List; public const int ConstantInt = 5; public static byte[] ByteArray = new byte[16]; public static string LongString = @"####################################################################################################### ############################################################################################################################### ##################################################################################################################################### ######################################################################################################################### ######################################################################################################"; #if CPP public static string testStringOne = "Test"; public static Il2CppSystem.Object testStringTwo = "string boxed as cpp object"; public static Il2CppSystem.String testStringThree = "string boxed as cpp string"; public static string nullString = null; public static Il2CppSystem.Collections.Hashtable testHashset; public static Il2CppSystem.Collections.Generic.List testList; #endif static TestClass() { List = new List(); for (int i = 0; i < 10000; i++) List.Add(i.ToString()); #if CPP testHashset = new Il2CppSystem.Collections.Hashtable(); testHashset.Add("key1", "itemOne"); testHashset.Add("key2", "itemTwo"); testHashset.Add("key3", "itemThree"); testList = new Il2CppSystem.Collections.Generic.List(3); testList.Add("One"); testList.Add("Two"); testList.Add("Three"); #endif } } }