Does anybody has an idea of MTS (Microsoft Transaction Server)? I need to "re-write" some classes with Public variables and Public functions. Can anybody give me a hand?
Printable View
Does anybody has an idea of MTS (Microsoft Transaction Server)? I need to "re-write" some classes with Public variables and Public functions. Can anybody give me a hand?
This sounds just like 'breaking binary compatibility'
Create all new interfaces, ie., if you now have
Implements IMcBrain
You need to ceate:
Implements IMcBrain2
just so you do not violate binary compat.
Add ONLY the new properties/methods to IMcBrain2.
NOT THE OLD ONES! I'm shouting for a reason - don't do it.
You need to create another interface ---- short answer