H
HelloWorld
Hi,
I could define delegates in VB.NET code
Public Interface Interface1
Delegate Function Abc()
End Interface
wherer as the following was not allowed in C#
interface Interface1
{
delegate void Abc();
}
what could be reasons behing this being allowed in VB.NET and not in C#?
I could define delegates in VB.NET code
Public Interface Interface1
Delegate Function Abc()
End Interface
wherer as the following was not allowed in C#
interface Interface1
{
delegate void Abc();
}
what could be reasons behing this being allowed in VB.NET and not in C#?