초기 커밋.
This commit is contained in:
@@ -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);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user