Демка с чатом работает

This commit is contained in:
2025-03-13 08:43:48 +03:00
parent 22cf8ede0a
commit 6d9607081c
11 changed files with 112 additions and 15 deletions
+7
View File
@@ -62,6 +62,13 @@ namespace mROA.Cbor
if (nonCasted is PreParsedValue preParsed)
return preParsed.ToObject(type, context);
if (type == typeof(Guid))
{
return new Guid((byte[])nonCasted);
}
return Convert.ChangeType(nonCasted, type);
}