trying to debug stuff

This commit is contained in:
Booklordofthedings 2024-08-23 21:25:13 +02:00
parent 0da1c14ed7
commit 501a4af636
10 changed files with 375 additions and 110 deletions

View file

@ -0,0 +1,25 @@
namespace Bofa.Testing;
using System;
using Bofa;
using Bofa.Serialization;
[BofaSerialize]
class Serialization
{
public int anInteger = (.)1;
[Test]
public static void Test()
{
Serialization s = scope .();
Bofa b = scope .();
b.Name = "s";
s.Serialize(b);
Console.WriteLine(b.ToString(.. scope .()));
//Console.Read();
}
}