public MethodDetail(string methodFullName, DeclaringTypeDetail declaringTypeName)
     : this(methodFullName, null, null, declaringTypeName)
 {
 }
 public MethodDetail(string methodFullName, string friendlyName, List <MethodDetail> calledMethods, DeclaringTypeDetail declaringTypeName)
 {
     this.MethodFullName = methodFullName;
     this.UsedMethods    = calledMethods;
     // this.IsStatic = isStatic;
     this.FriendlyName      = friendlyName;
     this.DeclaringTypeName = declaringTypeName;
 }