diff --git a/Il2CppTests/Il2CppTests.csproj b/Il2CppTests/Il2CppTests.csproj index 5804a68..8414f65 100644 --- a/Il2CppTests/Il2CppTests.csproj +++ b/Il2CppTests/Il2CppTests.csproj @@ -31,6 +31,7 @@ + @@ -53,6 +54,7 @@ + diff --git a/Il2CppTests/TestSources/Properties.cs b/Il2CppTests/TestSources/Properties.cs new file mode 100644 index 0000000..3ff644c --- /dev/null +++ b/Il2CppTests/TestSources/Properties.cs @@ -0,0 +1,16 @@ +/* + Copyright 2017-2019 Katy Coe - http://www.hearthcode.org - http://www.djkaty.com + + All rights reserved. +*/ + +namespace Il2CppTests.TestSources +{ + internal class Test + { + private int prop1 { get; set; } + protected int prop2 { get; private set; } + protected int prop3 { private get; set; } + public static int prop4 { private get; set; } + } +}