2021-04-04 03:41:36 +10:00
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
2021-04-15 20:18:03 +10:00
|
|
|
|
namespace UnityExplorer.Tests
|
2021-04-04 03:41:36 +10:00
|
|
|
|
{
|
|
|
|
|
public static class TestClass
|
|
|
|
|
{
|
2021-04-25 21:19:12 +10:00
|
|
|
|
public static List<string> List;
|
2021-04-06 01:01:46 +10:00
|
|
|
|
|
2021-04-28 20:47:48 +10:00
|
|
|
|
public const int ConstantInt = 5;
|
|
|
|
|
|
2021-04-28 23:58:13 +10:00
|
|
|
|
public static byte[] ByteArray = new byte[16];
|
|
|
|
|
|
2021-04-28 20:47:48 +10:00
|
|
|
|
public static string LongString = @"#######################################################################################################
|
|
|
|
|
###############################################################################################################################
|
|
|
|
|
#####################################################################################################################################
|
|
|
|
|
#########################################################################################################################
|
|
|
|
|
######################################################################################################";
|
|
|
|
|
|
2021-04-04 13:44:58 +10:00
|
|
|
|
#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;
|
|
|
|
|
|
2021-04-04 03:41:36 +10:00
|
|
|
|
public static Il2CppSystem.Collections.Hashtable testHashset;
|
2021-04-07 17:20:09 +10:00
|
|
|
|
public static Il2CppSystem.Collections.Generic.List<Il2CppSystem.Object> testList;
|
2021-04-28 20:47:48 +10:00
|
|
|
|
#endif
|
2021-04-04 03:41:36 +10:00
|
|
|
|
|
|
|
|
|
static TestClass()
|
|
|
|
|
{
|
2021-04-28 20:47:48 +10:00
|
|
|
|
List = new List<string>();
|
|
|
|
|
for (int i = 0; i < 10000; i++)
|
|
|
|
|
List.Add(i.ToString());
|
|
|
|
|
|
|
|
|
|
#if CPP
|
2021-04-04 03:41:36 +10:00
|
|
|
|
testHashset = new Il2CppSystem.Collections.Hashtable();
|
|
|
|
|
testHashset.Add("key1", "itemOne");
|
|
|
|
|
testHashset.Add("key2", "itemTwo");
|
|
|
|
|
testHashset.Add("key3", "itemThree");
|
2021-04-07 17:20:09 +10:00
|
|
|
|
|
|
|
|
|
testList = new Il2CppSystem.Collections.Generic.List<Il2CppSystem.Object>(3);
|
|
|
|
|
testList.Add("One");
|
|
|
|
|
testList.Add("Two");
|
|
|
|
|
testList.Add("Three");
|
2021-04-04 03:41:36 +10:00
|
|
|
|
#endif
|
2021-04-28 20:47:48 +10:00
|
|
|
|
}
|
2021-04-04 13:44:58 +10:00
|
|
|
|
}
|
2021-04-04 03:41:36 +10:00
|
|
|
|
}
|