trying to debug stuff
This commit is contained in:
parent
0da1c14ed7
commit
501a4af636
10 changed files with 375 additions and 110 deletions
25
src/Testing/Serialization.bf
Normal file
25
src/Testing/Serialization.bf
Normal 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();
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue