Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a c# dll from a supplier. I have extracted the source code, but it's not an option to modify it myself.

Supose the dll has these classes (in the same namespace):

public static class A {
   public static string Method1(this Helper helper, B options) {
      ...
   }
}

public class B {
   public int LoadingElementDuration {
      get;
      set;
   }

   public string Method2() {
      ...
   }
}

Class A is all fine. This the class that is used by us. Is it possible to modify class B? I want to add a property and override Method2 with my own code. Class A should then use my code instead of the default class B.

Thanks.

share|improve this question
Take a look at the adapter-pattern. – Tomtom Aug 17 '12 at 9:24

7 Answers

No, that's not possible because Method2 is sealed. You could have written a derived class from B and added a new property but you cannot override Method2. This would have been possible if Method2 was virtual.

share|improve this answer
no, Method2 is not sealed (in his example) – MoH Aug 17 '12 at 7:10
1  
Of course that it is sealed. class B doesn't implement any interface and the method is not marked with the virtual keyword. – Darin Dimitrov Aug 17 '12 at 7:10

You can copy all contents of this dll and paste it to a new created class library with the same class names. Then you can modify it as you want.

share|improve this answer

No, you will only be able to extend the functionality and not change the existing.

share|improve this answer

If the ClassA->Method1 is called from you code, all you need to do is extend ClassA and ClassB and add the methods that you need.

share|improve this answer
no, he said that he is using Class A. Class A is all fine. This the class that is used by us – MoH Aug 17 '12 at 7:22

Why are this people saying that it is impossible? Am I missing something? Make a derived class, add property, and use "new" to override method

public class C : B
{
    //add property here

    public new string Method2()
    {

    }
}

So let's take a look what we are getting here:

If you don't need to use added property in Method1 (this moment isn't so clear from your question):

C options = new C();
//init here
helper.Method1(options); //this will cast your object of C class to object of B class and your added property will be inaccessible.

But if you need to change implementation of Method1 to use your property you could try to do this way:

public static class CHelper
{
     public static string Method1(this Helper helper, C options)
     {

     }
}

and write your own implementation of Method1

share|improve this answer
1  
And Method1 won't call that because he accepts B as an argument and will ignore this pseudo-override. – Iaroslav Kovtunenko Aug 17 '12 at 7:09
How will it stop him from writing another extension method that using instance of his class as options? – Dantix Aug 17 '12 at 7:17
Well, as far as I see OP wants class A to use his version of class B, without actually implementing all that code on his own. – Iaroslav Kovtunenko Aug 17 '12 at 7:19
I don't know all background, OP doesn't show it, but if you adding some property - you want to use it. If this property is going to be used in Method2 - there is no need to change Method1. If not - he should write his own implementation that using this new property, otherwise I don't see need to add it. – Dantix Aug 17 '12 at 7:26
It's maybe beter to describe to backgound. the dll belongs to asp.net mvc. class A is AjaxExtensions and class B is AjaxOptions. I want to add a property to the ajaxoptions: private string _updateTargetSelector; then I want to override the method 'ToUnobtrusiveHtmlAttributes'. So I ultimately can call AjaxLink with my new ajaxoption – Bieters Aug 17 '12 at 8:14
show 1 more comment

You won't do that without any modifications to this code.

I can think about two options:

1) Mark Method2 as virtual, then create a a descendant of class B. After that, when passing that descendant to Method1 of class A, correct method will be called.

2) Create a descendant of class B, override Method2 with new keyword and then modify Method1 of class A to accept your descendant.

Both options are bad, sadly, and will only work for you if you can edit the dll source and then compile it back.

share|improve this answer
1  
1) won't work because he cannot modify the class library containing B. 2) won't work either => even if you have overriden Method2 with the new keyword the old one would still be used. – Darin Dimitrov Aug 17 '12 at 7:09
@DarinDimitrov I totally agree with you. But sometimes it's still only an option to decompile an assembly, change the code and compile it back. If not prohibited by the vendor. – Iaroslav Kovtunenko Aug 17 '12 at 7:12
@DarinDimitrov 2) that's why Method1 must be modified to change the argument type. – Iaroslav Kovtunenko Aug 17 '12 at 7:13
but the OP explicitly stated in his question that he cannot modify those 2 classes. – Darin Dimitrov Aug 17 '12 at 8:59
@DarinDimitrov I am not a native English speaker, and for me OP words may mean something from from 'I cannot do that' to 'I really don't want to do that'. My answer covers the second option. From your reaction I see I got OP incorrectly. Would you advise me to delete the answer as irrelevant? – Iaroslav Kovtunenko Aug 17 '12 at 9:14

Create a new Class, inherited from ClassB, create a new Method2 with key word new, that's it

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.