초기 커밋.

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
+19
View File
@@ -0,0 +1,19 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace ExI.Event
{
class MyClass
{
public event EventHandler<EventArgs>? Complished;
public void Calc(int complexity)
{
Thread.Sleep(complexity);
Complished?.Invoke(this, EventArgs.Empty);
}
}
}