Possible Duplicate:
Why Doesn’t C# Allow Static Methods to Implement an Interface?
I have code like this that says I can't implement a static methods:
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)
{ ....
Can I get an interface for this?