Hi All,
I would like to share the event 'MyEvent' in the following class:
[ServiceContract]
public interface MyInterface
{
[OperationContract]
void Start();
event EventHandler<MyEventArgs> MyEvent;
}
public class MyEventArgs:EventArgs
{
public string Name{set;get;}
}
Which Attribute should I add to MyEvent event and to the MyEventArgs class and its members?
Thanks in advance!!!