초기 커밋.

This commit is contained in:
2025-03-05 10:21:10 +09:00
parent 3471914e64
commit 15885a2286
55 changed files with 1716 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
using ExF.Class;
internal class Program
{
private static void Main(string[] args)
{
MyCustomer customer1 = new MyCustomer();
MyCustomer customer2 = new();
var customer3 = new MyCustomer();
}
}