可能重复:
为什么 C# 不允许静态方法实现接口?
我有这样的代码说我无法实现静态方法:
public static class AuxiliaryHelper : IAuxiliaryHelper
{
/// <summary>
/// Writes the response.
/// </summary>
/// <param name="jsonObj">The json object that gets turned in JSON and written out.</param>
public static void WriteResponse(this object jsonObj)
{ ....
我可以得到一个接口吗?