vote up 3 vote down star

Hi guys,

I'm beginning to fall in love with Extension Methods, but I just don't know how to create an EM only for a determinate Object type.

I have for example:

public static void AddPhoneNumberToContact(this Contact contact, PhoneType type, String number)
{
    lock (contact)
    {
        PhoneRow pr = PhoneRow.CreateNew();
        pr.SetDefaults();
        pr.PtypeIdx = type;
        pr.PhoneNumber = number;
        contact.Phones.Add(pr);
        pr = null;
    }
}

My problem is that I want to also Have this method in the Person object, and that is why I named

AddPhoneNumberToContact
AddPhoneNumberToPerson

Is there a way to have AddPhoneNumber and deal with the object that is provided?

or the solution is to have

public static void AddPhoneNumber(this object contact, ...
{
   ...

   if(typeof(Contact) == contact)
      ((Contact)contact).Phones.Add(pr);
   else if(typeof(Person) == contact)
      ((Person)contact).Phones.Add(pr);
}

Thank you.

flag

71% accept rate
Watch out with locks like that. If the caller of AddPhoneNumberToContact isn't aware of that lock and locks Contact himself before calling you have a guaranteed deadlock. Normally I lock on a private object. With extension methods this isn't possible though. – Mendelt Feb 5 at 10:31
Please edit the post to clarify that those classes cannot be modified. And include inheritance hierarchy too. – Anton Gogolev Feb 5 at 10:31
@Anton Gogolev It's right there in the Title! "3rd party SDK" – balexandre Feb 5 at 14:49

4 Answers

vote up 8 vote down check

How about writing two extension methods:

public static void AddPhoneNumber(this Contact contact, PhoneType type);

and

public static void AddPhoneNumber(this Person person, PhoneType type);

Looks cleaner to me.

If there's some common code between the two, extract that into a separate method.

link|flag
1  
How dumb can I be sometimes!!! :) Thanks – balexandre Feb 5 at 10:43
forgot all about multiple Functions with the same name :'( (and I use it a lot! but it was a new thing to me, ExMethods (!)) – balexandre Feb 5 at 10:44
vote up 5 vote down

Make Contact and Person implement common interface - say IContactWithPhoneNumbers - and then write an extension method "for this interface".

public interface IContactWithPhoneNumbers {}
public class Contact : IContactWithPhoneNumbers {}
public class Person : IContactWithPhoneNumbers {}
public static void AddPhoneNumber(this IContactWithPhoneNumbers obj) {}
link|flag
Contact and Person are protected, it's from a SDK. – balexandre Feb 5 at 10:29
vote up 1 vote down

Reading your comments (objects are from an SDK and are not editable). I would probably do something like this:

public class Util
{
    //common util method
    public static void AddPhoneNumber(object obj, string phoneNumber)
    {
         if(obj is Contact)
             ((Contact)contact).Phones.Add(phoneNumber);
         else if(obj is Person)
             ((Person)contact).Phones.Add(phoneNumber);
    }

    //extension method for Person
    public static void AddPhoneNumber(this Person p, string phoneNumber)
    {
        AddPhoneNumber((object)p, phoneNumber);
    }

    //extension method for Contact
    public static void AddPhoneNumber(this Contact c, string phoneNumber)
    {
        AddPhoneNumber((object)c, phoneNumber);
    }
}

I do think the best practice though when you have control of the underlying objects would be to implement a common interface.

link|flag
vote up 0 vote down

You might make your extension method generic, e.g.:

public static void AddPhoneNumberToContact<T>(
    this T contact,
    PhoneType type,
    String number
)
{
    PhoneRow pr = PhoneRow.CreateNew();
    pr.SetDefaults();
    pr.PtypeIdx = type;
    pr.PhoneNumber = number;
    ((T)contact).Phones.Add(pr);
    pr = null;
}

You won't be able to use lock because "'T' is not a reference type as required by the lock statement", so you might have to return some value.

If it complains about not being able to resolve the Phones method on type T, you could:

Pass in some function delegate that would take type T, return nothing, and perform the action ((T)contact).Phones.Add(pr);.

Or you could create an interface like the following:

public interface IPhoneable
{
    IList<Phone> Phones();
}

Then, once you have that interface, you can add the following to your generic extension method:

public static void AddPhoneNumberToContact<T>(
    this T contact,
    PhoneType type,
    String number
) where T : IPhoneable {...}

Here, T is still a generic type, but now your AddPhoneNumberToContact method has the requirement that, whatever T is, it inherits from the IPhoneable interface, which you just defined to have the Phones() method.

See also C# Extension Method for Generic Collections.

link|flag
I will look upon this better, thank you for the insight. – balexandre Jul 3 at 9:12

Your Answer

Get an OpenID
or

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