c# - Pass an object from one version of library to another one -
Suppose I have an app a
and that library B
uses it. Both of them need another library C
to work. C
is a strong name and version. Assume that B
was created to work with C
version 1.0 and A
C
Was created to work with 1.1
When A
is in call methods B
is generated from some sections which are C
And the problem arises because we have c
with different versions, so some classes from C 1.0
Must have to pour. How are such problems resolved? C
has been developed backward-compatible so that it is possible on paper.
In my case, through the A
call b
reflection, it is not certain whether it is important or not
Comments
Post a Comment