diff options
author | Emma [it/its]@Rory& <root@rory.gay> | 2024-06-03 04:59:40 +0200 |
---|---|---|
committer | Emma [it/its]@Rory& <root@rory.gay> | 2024-06-03 04:59:40 +0200 |
commit | 2a37322d78c9ce1d27cbc12e24dd918407a931e3 (patch) | |
tree | d3483edae6792bab1f10516b95779367220a2a8d /ConsoleApp1/Program.cs | |
parent | Add all projects to sln (diff) | |
download | LibMatrix-dev/event-rewrite.tar.xz |
Update dependencies, some tests, other things github/dev/event-rewrite dev/event-rewrite
Diffstat (limited to 'ConsoleApp1/Program.cs')
-rw-r--r-- | ConsoleApp1/Program.cs | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/ConsoleApp1/Program.cs b/ConsoleApp1/Program.cs deleted file mode 100644 index 7831ce8..0000000 --- a/ConsoleApp1/Program.cs +++ /dev/null @@ -1,25 +0,0 @@ -// See https://aka.ms/new-console-template for more information - -using LibMatrix.EventTypes; -using LibMatrix.EventTypes.Events; - -Console.WriteLine("Hello, World!"); - -MatrixEventCollection collection = new(); -collection.Add(new MatrixEvent<RoomMembershipEventContent>() { - Content = new RoomMembershipEventContent() { - Membership = "yes" - } -}); - -List<MatrixEvent<MatrixEventContent>> collection2 = new(); -collection2.Add(new MatrixEvent<RoomMembershipEventContent>() { - Content = new RoomMembershipEventContent() { - Membership = "yes" - } -}); - -List<MatrixEventContent> collection3 = new(); -collection3.Add(new RoomMembershipEventContent() { - Membership = "yes" -}); \ No newline at end of file |