I need to write an extension method on a byte[]. Is that possible?
+5
A:
yes, just do :
public static class Extensions
{
public static void Method(this byte[] current)
{
}
}
CMS
2008-10-29 23:59:25