P
Predrag
Hello.
Is it a good practice to use classes in interface definition:
Public Interface IMessenger
Sub Send(ByVal msg As CMessage)
....
End Interface
Is this considered to be a better solution:
Sub Send(ByVal msg As IMessage)
Thanks.
- Predrag.
Is it a good practice to use classes in interface definition:
Public Interface IMessenger
Sub Send(ByVal msg As CMessage)
....
End Interface
Is this considered to be a better solution:
Sub Send(ByVal msg As IMessage)
Thanks.
- Predrag.