public interface ICalculator { int Add(int Number1, int Number2); } public class ManagedClass:ICalculator { public int Add(int Number1,int Number2) { // I want to raise an event here so that this event should be consumed in VB return Number1+Number2; } }
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)