Hello,
I will try to ask this question very straight forward to not complicate the example.
As seen the an event called currentTime is located INSIDE a public class EWrapperImpl.
The functions comes from a DLL reference file that I code against. By default it seems
that the currentTime(long time) has to be declared in the EWrapperImpl class.
I wonder if there are any standard procedure to be able to let this currentTime event
to Also run in the "public partial class Form1 : Form" somehow?
public class EWrapperImpl : EWrapper
{
public void currentTime(long time) { }
}
What wonder is how it would be possible to have this event in the "public partial class Form1 : Form"
which is the application itself.
Can we declare the currentTime event in the below code somehow?
namespace TestCsharp
{
public partial class Form1 : Form
{
public Form1()
{
InitializeCompo nent();
}
//How is it possible to declare below function here?:
//"public void currentTime(long time) { }"
}
}