mirror of
https://github.com/Smaug123/WoofWare.PawPrint
synced 2025-10-12 00:58:39 +00:00
Merge branch 'main' into generic-edge-cases
This commit is contained in:
@@ -124,9 +124,12 @@ public class TestInitobj
|
||||
{
|
||||
ObjectRef = new object(),
|
||||
StringRef = "Hello",
|
||||
ArrayRef = new int[] { 1, 2, 3 },
|
||||
ArrayRef = new int[3],
|
||||
ValueField = 42
|
||||
};
|
||||
c.ArrayRef[0] = 1;
|
||||
c.ArrayRef[1] = 2;
|
||||
c.ArrayRef[2] = 3;
|
||||
|
||||
// Verify initial values
|
||||
if (c.ObjectRef == null) return 30;
|
||||
|
Reference in New Issue
Block a user