13 lines
261 B
C#
13 lines
261 B
C#
// See https://aka.ms/new-console-template for more information
|
|
using ExI.Event;
|
|
|
|
var mycls = new MyClass();
|
|
mycls.Complished += Mycls_Complished;
|
|
|
|
void Mycls_Complished(object? sender, EventArgs e)
|
|
{
|
|
Console.WriteLine("작업끝");
|
|
}
|
|
|
|
mycls.Calc(2000);
|