Tagged Questions
13
votes
2answers
580 views
What would I lose by abandoning the standard EventHandler pattern in .NET?
There's a standard pattern for events in .NET - they use a delegate type that takes a plain object called sender and then the actual "payload" in a second parameter, which should be derived from ...
12
votes
2answers
387 views
Tool for backwards compatibility for the C#/.NET API?
I found this tool, http://sab39.netreach.com/Software/Japitools/JDK-Results/46/, which checks for backwards compatibility between different versions of APIs for Java using javadoc.
Is there an tool ...
7
votes
3answers
160 views
C# interface breakage, ABI
Suppose we have the class X in version 1 of the assembly A.dll:
class X {
SomeType Property { set; get; }
}
and then in version 2 of the assembly A.dll:
class X {
SomeType Property { set; ...
3
votes
1answer
66 views
How do I preserve binary compatibility for a .NET Assembly that presents a COM interface?
We have developed a .NET Assembly that stores language translation information and it needs to be consumed by a VB6 application.
We would like to be able to change the translation information without ...
1
vote
3answers
94 views
C# plugin system binary compatibility issues
I've implemented a plugin system in .NET. The base library implements basic classes and interfaces exposed to plugins, the plugin libraries links the base library for using exposed classes and ...