public static string MethodA(this SomeB someB) { return("I'm in extension for SomeB type!"); }
public SomeA(string s, byte[] a, SomeB b) { S = s; A = a; B = b; }