2
我需要在byte []上寫一個擴展方法。那可能嗎?你可以在類型數組上寫擴展方法嗎?
我需要在byte []上寫一個擴展方法。那可能嗎?你可以在類型數組上寫擴展方法嗎?
是的,只是做:
public static class Extensions
{
public static void Method(this byte[] current)
{
}
}
當然,只需製作byte[]
型的第一個參數。