Hi i am using model generation tool from VS2012 with a UML project design.
Problem is VS refuses to generate code from a delegate class (its a class stereotype). I tried a lot of things to make it work and there is not much documentation. Seems like nobody have this problem, maybe its something wrong about the class? here an example:
public class Class1
{
public delegate void Test();
}
public class Class2
{
public event Class1 TestEvent();
public virtual void OnTestEvent()
{
throw new System.NotImplementedException();
}
}
Also VS doesn't let me declare a function as delegate (i cant see the option) and i need to declare a class as an delegate so i can put events on other class. Its really driving me crazy.