Code cleanup.

This commit is contained in:
2023-03-08 20:36:18 +08:00
parent 717e77b47e
commit b89e1f983e
2 changed files with 3 additions and 3 deletions

View File

@@ -54,6 +54,7 @@ namespace Cryville.Crtr {
}
}
}
public static readonly PropSrc Null = new Arbitrary(PdtInternalType.Null, new byte[0]);
public class String : PropSrc {
readonly Func<string> _cb;
public String(Func<string> cb) : base(PdtInternalType.String) { _cb = cb; }