public string GetTypeName() { string name = String.Empty; foreach (Type t in _objectTypes) { if (t != null) { name += AbstractClassBuilder.GetTypeFullName(t).Replace('+', '.'); } name += "$"; } return(name + AssemblyNameSuffix); }
private string GetClassName() { return(AbstractClassBuilder.GetTypeFullName(_objectType) .Replace('+', '.') + "$" + AssemblyNameSuffix); }