This commit is contained in:
CortexCore
2024-03-25 16:08:26 +08:00
parent 65d90d1bfa
commit 967ad8eacf
67 changed files with 3097 additions and 39530 deletions

View File

@@ -12,4 +12,5 @@
T Get();
void Set(T t);
}
}

View File

@@ -17,7 +17,8 @@ namespace BITKit
{
public static string[] Cast(this IEnumerable<IReference> self)
{
return self.Select(x => x.Get()).ToArray();
return self.Select(Get).ToArray();
string Get(IReference x) => x.Value;
}
}