vote up 2 vote down star

I need to write an extension method on a byte[]. Is that possible?

flag

70% accept rate

2 Answers

vote up 5 vote down check

yes, just do :

public static class Extensions
{
    public static void Method(this byte[] current)
    {

    }
}
link|flag
vote up 1 vote down

Sure, just make the first parameter of type byte[].

link|flag

Your Answer

Get an OpenID
or

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