2
0
mirror of https://github.com/esiur/esiur-dotnet.git synced 2026-06-13 14:38:43 +00:00

runtimeType

This commit is contained in:
2026-06-09 04:31:56 +03:00
parent a741013621
commit daf7f09a12
7 changed files with 80 additions and 22 deletions
+4 -2
View File
@@ -8,7 +8,9 @@ namespace Esiur.Data
{
public class TruPrimitive:Tru
{
public override Type RuntimeType { get; protected set; }
Type _runtimeType;
public override Type RuntimeType => _runtimeType;
public override string ToString()
{
@@ -19,7 +21,7 @@ namespace Esiur.Data
{
Identifier = identifier;
Nullable = nullable;
RuntimeType = type;
_runtimeType = type;
}
public override void SetNull(List<byte> flags)