你能在类型数组上写扩展方法吗?
Posted
技术标签:
【中文标题】你能在类型数组上写扩展方法吗?【英文标题】:can you write extension methods on type arrays? 【发布时间】:2010-09-19 21:58:02 【问题描述】:我需要在 byte[] 上写一个扩展方法。这可能吗?
【问题讨论】:
【参考方案1】:是的,就是这样:
public static class Extensions
public static void Method(this byte[] current)
【讨论】:
【参考方案2】:当然,只需将第一个参数设为byte[]
。
【讨论】:
以上是关于你能在类型数组上写扩展方法吗?的主要内容,如果未能解决你的问题,请参考以下文章