add version 0.0.1

This commit is contained in:
2023-03-12 13:31:30 +00:00
parent 433e6a2727
commit b62e34eea2
35 changed files with 1227 additions and 327 deletions

View File

@@ -0,0 +1,22 @@
namespace Test
{
internal class Program
{
private static void Main(string[] args)
{
Console.WriteLine("Hello");
var foo = Example.App.Resources.Test1;
Console.WriteLine(foo.Value);
var bar = Example.App.Properties.SubProperties.Properties.Test2.From(
ResourceString.Net.Contract.LiteralString.Factory("1"),
ResourceString.Net.Contract.LiteralString.Factory("2")
);
Console.WriteLine(bar.Value);
}
}
}