I am writing an extension method for parsing JSON string for any given type. I wanted to use the method on types instead of instances like many examples we already know, but
You can't create extension methods that apply to the type itself. They can only be called on instances of a type.