1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689
|
using System;
using System.Collections.Generic;
using System.Globalization;
using System.IO;
using System.Linq;
using System.Text;
using System.Xml;
using Mono.Cecil;
using Mono.Collections.Generic;
using Mono.Documentation.Util;
namespace Mono.Documentation.Updater
{
public static class DocUtils
{
public static bool DoesNotHaveApiStyle (this XmlElement element, ApiStyle style)
{
string styleString = style.ToString ().ToLowerInvariant ();
string apistylevalue = element.GetAttribute ("apistyle");
return apistylevalue != styleString || string.IsNullOrWhiteSpace (apistylevalue);
}
public static bool HasApiStyle (this XmlElement element, ApiStyle style)
{
string styleString = style.ToString ().ToLowerInvariant ();
return element.GetAttribute ("apistyle") == styleString;
}
public static bool HasApiStyle (this XmlNode node, ApiStyle style)
{
var attribute = node.Attributes["apistyle"];
return attribute != null && attribute.Value == style.ToString ().ToLowerInvariant ();
}
public static void AddApiStyle (this XmlElement element, ApiStyle style)
{
string styleString = style.ToString ().ToLowerInvariant ();
var existingValue = element.GetAttribute ("apistyle");
if (string.IsNullOrWhiteSpace (existingValue) || existingValue != styleString)
{
element.SetAttribute ("apistyle", styleString);
}
// Propagate the API style up to the membernode if necessary
if (element.LocalName == "AssemblyInfo" && element.ParentNode != null && element.ParentNode.LocalName == "Member")
{
var member = element.ParentNode;
var unifiedAssemblyNode = member.SelectSingleNode ("AssemblyInfo[@apistyle='unified']");
var classicAssemblyNode = member.SelectSingleNode ("AssemblyInfo[not(@apistyle) or @apistyle='classic']");
var parentAttribute = element.ParentNode.Attributes["apistyle"];
Action removeStyle = () => element.ParentNode.Attributes.Remove (parentAttribute);
Action propagateStyle = () =>
{
if (parentAttribute == null)
{
// if it doesn't have the attribute, then add it
parentAttribute = element.OwnerDocument.CreateAttribute ("apistyle");
parentAttribute.Value = styleString;
element.ParentNode.Attributes.Append (parentAttribute);
}
};
if ((style == ApiStyle.Classic && unifiedAssemblyNode != null) || (style == ApiStyle.Unified && classicAssemblyNode != null))
removeStyle ();
else
propagateStyle ();
}
}
public static string GetFormattedTypeName(string name)
{
int index = name.IndexOf("`", StringComparison.Ordinal);
if (index >= 0)
return name.Substring(0, index);
return name;
}
public static void AddApiStyle (this XmlNode node, ApiStyle style)
{
string styleString = style.ToString ().ToLowerInvariant ();
var existingAttribute = node.Attributes["apistyle"];
if (existingAttribute == null)
{
existingAttribute = node.OwnerDocument.CreateAttribute ("apistyle");
node.Attributes.Append (existingAttribute);
}
existingAttribute.Value = styleString;
}
public static void RemoveApiStyle (this XmlElement element, ApiStyle style)
{
string styleString = style.ToString ().ToLowerInvariant ();
string existingValue = element.GetAttribute ("apistyle");
if (string.IsNullOrWhiteSpace (existingValue) || existingValue == styleString)
{
element.RemoveAttribute ("apistyle");
}
}
public static void RemoveApiStyle (this XmlNode node, ApiStyle style)
{
var styleAttribute = node.Attributes["apistyle"];
if (styleAttribute != null && styleAttribute.Value == style.ToString ().ToLowerInvariant ())
{
node.Attributes.Remove (styleAttribute);
}
}
public static IEnumerable<T> SafeCast<T> (this System.Collections.IEnumerable list)
{
if (list == null) yield break;
foreach (object item in list)
{
if (item is T castedItem)
{
yield return castedItem;
}
}
}
public static bool IsExplicitlyImplemented (MethodDefinition method)
{
return method != null && method.IsPrivate && method.IsFinal && method.IsVirtual;
}
public static string GetTypeDotMember (string name)
{
int startType, startMethod;
startType = startMethod = -1;
for (int i = 0; i < name.Length; ++i)
{
if (name[i] == '.')
{
startType = startMethod;
startMethod = i;
}
}
return name.Substring (startType + 1);
}
public static string GetMember(string name)
{
int i = name.LastIndexOf('.');
var memberName = i == -1 ? name : name.Substring(i + 1);
return memberName;
}
public static string GetMemberForProperty(string name)
{
int i = name.LastIndexOf('.');
var memberName = i == -1 ? name : name.Substring(i + 1);
if (memberName.StartsWith("get_") || memberName.StartsWith("set_") || memberName.StartsWith("put_"))
{
var index = memberName.IndexOf("_", StringComparison.InvariantCulture);
if (index > 0)
//remove get/set prefix from method name
memberName = memberName.Substring(index + 1);
}
return memberName;
}
public static void GetInfoForExplicitlyImplementedMethod (
MethodDefinition method, out TypeReference iface, out MethodReference ifaceMethod)
{
iface = null;
ifaceMethod = null;
if (method.Overrides.Count != 1)
throw new InvalidOperationException ("Could not determine interface type for explicitly-implemented interface member " + method.Name);
iface = method.Overrides[0].DeclaringType;
ifaceMethod = method.Overrides[0];
}
public static bool IsPublic (TypeDefinition type)
{
TypeDefinition decl = type;
while (decl != null)
{
if (!(decl.IsPublic || decl.IsNestedPublic ||
decl.IsNestedFamily || decl.IsNestedFamily || decl.IsNestedFamilyOrAssembly))
{
return false;
}
decl = (TypeDefinition)decl.DeclaringType;
}
return true;
}
public static string GetPropertyName (PropertyDefinition pi, string delimeter = ".")
{
// Issue: (g)mcs-generated assemblies that explicitly implement
// properties don't specify the full namespace, just the
// TypeName.Property; .NET uses Full.Namespace.TypeName.Property.
MethodDefinition method = pi.GetMethod ?? pi.SetMethod;
bool isExplicitlyImplemented = IsExplicitlyImplemented(method);
if (!isExplicitlyImplemented)
return pi.Name;
// Need to determine appropriate namespace for this member.
GetInfoForExplicitlyImplementedMethod (method, out var iface, out var ifaceMethod);
var stringifyIface = DocTypeFullMemberFormatter.Default.GetName(iface).Replace(".", delimeter);
return string.Join (delimeter, new string[]{
stringifyIface,
GetMemberForProperty (ifaceMethod.Name)});
}
public static string GetNamespace (TypeReference type, string delimeter = null)
{
if (type == null)
return string.Empty;
if (type.GetElementType ().IsNested)
type = type.GetElementType ();
while (type != null && type.IsNested && !type.IsGenericParameter)
type = type.DeclaringType;
if (type == null)
return string.Empty;
string typeNS = type.Namespace;
if (!string.IsNullOrEmpty(delimeter))
{
typeNS = typeNS.Replace(".", delimeter);
}
// first, make sure this isn't a type reference to another assembly/module
bool isInAssembly = MDocUpdater.IsInAssemblies (type.Module.Name);
if (isInAssembly && !typeNS.StartsWith ("System") && MDocUpdater.HasDroppedNamespace (type))
{
typeNS = string.Format ("{0}{1}{2}", MDocUpdater.droppedNamespace, delimeter ?? ".", typeNS);
}
return typeNS;
}
public static string PathCombine (string dir, string path)
{
if (dir == null)
dir = "";
if (path == null)
path = "";
return Path.Combine (dir, path);
}
public static bool IsExtensionMethod (MethodDefinition method)
{
return
method.CustomAttributes
.Any (m => m.AttributeType.FullName == "System.Runtime.CompilerServices.ExtensionAttribute")
&& method.DeclaringType.CustomAttributes
.Any (m => m.AttributeType.FullName == "System.Runtime.CompilerServices.ExtensionAttribute");
}
public static bool IsDelegate (TypeDefinition type)
{
TypeReference baseRef = type.BaseType;
if (baseRef == null)
return false;
return !type.IsAbstract && baseRef.FullName == "System.Delegate" || // FIXME
baseRef.FullName == "System.MulticastDelegate";
}
public static bool NeedsOverwrite(XmlElement element)
{
return element != null &&
!(element.HasAttribute("overwrite") &&
element.Attributes["overwrite"].Value.Equals("false", StringComparison.InvariantCultureIgnoreCase));
}
public static List<TypeReference> GetDeclaringTypes (TypeReference type)
{
List<TypeReference> decls = new List<TypeReference> ();
decls.Add (type);
while (type.DeclaringType != null)
{
decls.Add (type.DeclaringType);
type = type.DeclaringType;
}
decls.Reverse ();
return decls;
}
public static int GetGenericArgumentCount (TypeReference type)
{
GenericInstanceType inst = type as GenericInstanceType;
return inst != null
? inst.GenericArguments.Count
: type.GenericParameters.Count;
}
class TypeEquality : IEqualityComparer<TypeReference>
{
bool IEqualityComparer<TypeReference>.Equals (TypeReference x, TypeReference y)
{
if (x == null && y == null) return true;
if (x == null || y == null) return false;
return x.FullName == y.FullName;
}
int IEqualityComparer<TypeReference>.GetHashCode (TypeReference obj)
{
return obj.GetHashCode ();
}
}
static TypeEquality typeEqualityComparer = new TypeEquality ();
public static IEnumerable<TypeReference> GetAllPublicInterfaces (TypeDefinition type)
{
return GetAllInterfacesFromType (type)
.Where (i => IsPublic (i.Resolve ()))
.Distinct (typeEqualityComparer);
}
private static IEnumerable<TypeReference> GetAllInterfacesFromType(TypeDefinition type)
{
if (type == null)
yield break;
foreach(var i in type.Interfaces)
{
yield return i.InterfaceType;
foreach(var ii in GetAllInterfacesFromType(i.InterfaceType.Resolve()))
{
yield return ii;
}
}
}
public static IEnumerable<TypeReference> GetUserImplementedInterfaces (TypeDefinition type)
{
HashSet<string> inheritedInterfaces = GetInheritedInterfaces (type);
List<TypeReference> userInterfaces = new List<TypeReference> ();
foreach (var ii in type.Interfaces)
{
var iface = ii.InterfaceType;
TypeReference lookup = iface.Resolve () ?? iface;
if (!inheritedInterfaces.Contains (GetQualifiedTypeName (lookup)))
userInterfaces.Add (iface);
}
return userInterfaces.Where (i => IsPublic (i.Resolve ()));
}
private static string GetQualifiedTypeName (TypeReference type)
{
return "[" + type.Scope.Name + "]" + type.FullName;
}
private static HashSet<string> GetInheritedInterfaces (TypeDefinition type)
{
HashSet<string> inheritedInterfaces = new HashSet<string> ();
Action<TypeDefinition> a = null;
a = t =>
{
if (t == null) return;
foreach (var r in t.Interfaces)
{
inheritedInterfaces.Add (GetQualifiedTypeName (r.InterfaceType));
a (r.InterfaceType.Resolve ());
}
};
TypeReference baseRef = type.BaseType;
while (baseRef != null)
{
TypeDefinition baseDef = baseRef.Resolve ();
if (baseDef != null)
{
a (baseDef);
baseRef = baseDef.BaseType;
}
else
baseRef = null;
}
foreach (var r in type.Interfaces)
a (r.InterfaceType.Resolve ());
return inheritedInterfaces;
}
public static void AppendFieldValue(StringBuilder buf, FieldDefinition field)
{
// enums have a value__ field, which we ignore
if (((TypeDefinition)field.DeclaringType).IsEnum ||
field.DeclaringType.IsGenericType())
return;
if (field.HasConstant && field.IsLiteral)
{
object val = null;
try
{
val = field.Constant;
}
catch
{
return;
}
if (val == null)
buf.Append(" = ").Append("null");
else if (val is Enum)
buf.Append(" = ").Append(val.ToString());
else if (val is IFormattable)
{
string value = ((IFormattable)val).ToString(null, CultureInfo.InvariantCulture);
if (val is string)
value = "\"" + value + "\"";
buf.Append(" = ").Append(value);
}
}
}
/// <summary>
/// XPath is invalid if it containt '-symbol inside '...'.
/// So, put string which contains '-symbol inside "...", and vice versa
/// </summary>
public static string GetStringForXPath(string input)
{
if (!input.Contains("'"))
return $"\'{input}\'";
if (!input.Contains("\""))
return $"\"{input}\"";
return input;
}
/// <summary>
/// No documentation for property/event accessors.
/// </summary>
public static bool IsIgnored(MemberReference mi)
{
if (IsCompilerGenerated(mi))
{
if (mi.Name.StartsWith("get_", StringComparison.Ordinal)) return true;
if (mi.Name.StartsWith("set_", StringComparison.Ordinal)) return true;
if (mi.Name.StartsWith("put_", StringComparison.Ordinal)) return true;
if (mi.Name.StartsWith("add_", StringComparison.Ordinal)) return true;
if (mi.Name.StartsWith("remove_", StringComparison.Ordinal)) return true;
if (mi.Name.StartsWith("raise_", StringComparison.Ordinal)) return true;
}
return false;
}
private static bool IsCompilerGenerated(MemberReference mi)
{
IMemberDefinition memberDefinition = mi.Resolve();
return memberDefinition.IsSpecialName
|| memberDefinition.CustomAttributes.Any(i =>
i.AttributeType.FullName == Consts.CompilerGeneratedAttribute
|| i.AttributeType.FullName == Consts.CompilationMappingAttribute
);
}
public static bool IsAvailablePropertyMethod(MethodDefinition method)
{
return method != null
&& (IsExplicitlyImplemented(method)
|| (!method.IsPrivate && !method.IsAssembly && !method.IsFamilyAndAssembly));
}
/// <summary>
/// Get all members of implemented interfaces as Dictionary [fingerprint string] -> MemberReference
/// </summary>
public static Dictionary<string, List<MemberReference>> GetImplementedMembersFingerprintLookup(TypeDefinition type)
{
var lookup = new Dictionary<string, List<MemberReference>>();
List<TypeDefinition> previousInterfaces = new List<TypeDefinition>();
foreach (var implementedInterface in type.Interfaces)
{
var interfaceType = implementedInterface.InterfaceType.Resolve();
if (interfaceType == null)
continue;
//Don't add duplicates of members which appear because of inheritance of interfaces
bool addDuplicates = !previousInterfaces.Any(
i => i.Interfaces.Any(
j => j.InterfaceType.FullName == interfaceType.FullName));
var genericInstanceType = implementedInterface.InterfaceType as GenericInstanceType;
foreach (var memberReference in interfaceType.GetMembers())
{
// pass genericInstanceType to resolve generic types if they are explicitly specified in the interface implementation code
var fingerprint = GetFingerprint(memberReference, genericInstanceType);
if (!lookup.ContainsKey(fingerprint))
lookup[fingerprint] = new List<MemberReference>();
// if it's going to be the first element with this fingerprint, add it anyway.
// otherwise, check addDuplicates flag
if (!lookup[fingerprint].Any() || addDuplicates)
lookup[fingerprint].Add(memberReference);
}
previousInterfaces.Add(interfaceType);
}
return lookup;
}
/// <summary>
/// Get fingerprint of MemberReference. If fingerprints are equal, members can be implementations of each other
/// </summary>
/// <param name="memberReference">Type member which fingerprint is returned</param>
/// <param name="genericInterface">GenericInstanceType instance to resolve generic types if they are explicitly specified in the interface implementation code</param>
/// <remarks>Any existing MemberFormatter can't be used for generation of fingerprint because none of them generate equal signatures
/// for an interface member and its implementation in the following cases:
/// 1. Explicitly implemented members
/// 2. Different names of generic arguments in interface and in implementing type
/// 3. Implementation of interface with generic type parameters
/// The last point is especially interesting because it makes GetFingerprint method context-sensitive:
/// it returns signatures of interface members depending on generic parameters of the implementing type (GenericInstanceType parameter).</remarks>
public static string GetFingerprint(MemberReference memberReference, GenericInstanceType genericInterface = null)
{
// An interface contains only the signatures of methods, properties, events or indexers.
StringBuilder buf = new StringBuilder();
var unifiedTypeNames = new Dictionary<string, string>();
FillUnifiedMemberTypeNames(unifiedTypeNames, memberReference as IGenericParameterProvider);// Fill the member generic parameters unified names as M0, M1....
FillUnifiedTypeNames(unifiedTypeNames, memberReference.DeclaringType, genericInterface);// Fill the type generic parameters unified names as T0, T1....
if (memberReference is IMethodSignature)
{
IMethodSignature methodSignature = (IMethodSignature)memberReference;
buf.Append(GetUnifiedTypeName(methodSignature.ReturnType, unifiedTypeNames)).Append(" ");
buf.Append(SimplifyName(memberReference.Name)).Append(" ");
AppendParameters(buf, methodSignature.Parameters, unifiedTypeNames);
}
if (memberReference is PropertyDefinition)
{
PropertyDefinition propertyReference = (PropertyDefinition)memberReference;
buf.Append(GetUnifiedTypeName(propertyReference.PropertyType, unifiedTypeNames)).Append(" ");
if (propertyReference.GetMethod != null)
buf.Append("get").Append(" ");
if (propertyReference.SetMethod != null)
buf.Append("set").Append(" ");
buf.Append(SimplifyName(memberReference.Name)).Append(" ");
AppendParameters(buf, propertyReference.Parameters, unifiedTypeNames);
}
if (memberReference is EventDefinition)
{
EventDefinition eventReference = (EventDefinition)memberReference;
buf.Append(GetUnifiedTypeName(eventReference.EventType, unifiedTypeNames)).Append(" ");
buf.Append(SimplifyName(memberReference.Name)).Append(" ");
}
var memberUnifiedTypeNames = new Dictionary<string, string>();
FillUnifiedMemberTypeNames(memberUnifiedTypeNames, memberReference as IGenericParameterProvider);
if (memberUnifiedTypeNames.Any())// Add generic arguments to the fingerprint. SomeMethod<T>() != SomeMethod()
{
buf.Append(" ").Append(string.Join(" ", memberUnifiedTypeNames.Values));
}
return buf.ToString();
}
/// <summary>
/// If it's the name of explicitly implemented member return only short name
/// </summary>
private static string SimplifyName(string memberName)
{
int nameBorder = memberName.LastIndexOf(".", StringComparison.InvariantCulture);
if (nameBorder > 0)
{
return memberName.Substring(nameBorder + 1, memberName.Length - nameBorder - 1);
}
return memberName;
}
/// <summary>
/// Resolve generic type names of the type type based on interface implementation details
/// </summary>
private static void FillUnifiedTypeNames(Dictionary<string, string> unifiedTypeNames,
IGenericParameterProvider type,
GenericInstanceType genericInterface)
{
if (type == null)
return;
int i = 0;
foreach (var genericParameter in type.GenericParameters)
{
if (unifiedTypeNames.ContainsKey(genericParameter.Name))
continue;
// if generic type can be resolved with interface implementation parameters
if (genericInterface != null
&& i < genericInterface.GenericArguments.Count)
{
unifiedTypeNames[genericParameter.Name] = genericInterface.GenericArguments[i].FullName;
}
else
{
unifiedTypeNames[genericParameter.Name] = genericParameter.Name;
}
++i;
}
}
/// <summary>
/// Resolve generic type names of the member based on the order of generic arguments
/// </summary>
private static void FillUnifiedMemberTypeNames(Dictionary<string, string> unifiedTypeNames,
IGenericParameterProvider member)
{
if (member == null)
return;
int i = 0;
foreach (var genericParameter in member.GenericParameters)
{
if (unifiedTypeNames.ContainsKey(genericParameter.Name))
continue;
unifiedTypeNames[genericParameter.Name] = "MemberGenericType" + i;
++i;
}
}
private static void AppendParameters(StringBuilder buf, Collection<ParameterDefinition> parameters, Dictionary<string, string> genericTypes)
{
buf.Append("(");
foreach (var parameterDefinition in parameters)
{
buf.Append(GetUnifiedTypeName(parameterDefinition.ParameterType, genericTypes)).Append(", ");
}
buf.Append(")");
}
private static string GetUnifiedTypeName(TypeReference type, Dictionary<string, string> genericTypes)
{
var genericInstance = type as IGenericInstance;
if (genericInstance != null && genericInstance.HasGenericArguments)
{
return
$"{type.Namespace}.{type.Name}<{string.Join(",", genericInstance.GenericArguments.Select(i => GetUnifiedTypeName(i, genericTypes)))}>";
}
return genericTypes.ContainsKey(type.Name)
? genericTypes[type.Name]
: type.FullName;
}
public static string GetExplicitTypeName(MemberReference memberReference)
{
var overrides = GetOverrides(memberReference);
if (overrides == null)
{
throw new ArgumentException("Unsupported explicitly implemented member");
}
var declaringType = overrides.First().DeclaringType;
return declaringType.GetElementType().FullName;
}
public static bool IsExplicitlyImplemented(MemberReference memberReference)
{
var overrides = GetOverrides(memberReference);
return overrides?.Count > 0;
}
/// <summary>
/// Get which members are overriden by memberReference
/// </summary>
private static Collection<MethodReference> GetOverrides(MemberReference memberReference)
{
if (memberReference is MethodDefinition)
{
MethodDefinition methodDefinition = (MethodDefinition)memberReference;
return methodDefinition.Overrides;
}
if (memberReference is PropertyDefinition)
{
PropertyDefinition propertyDefinition = (PropertyDefinition)memberReference;
return (propertyDefinition.GetMethod ?? propertyDefinition.SetMethod)?.Overrides;
}
if (memberReference is EventDefinition)
{
EventDefinition evendDefinition = (EventDefinition)memberReference;
return evendDefinition.AddMethod.Overrides;
}
return null;
}
public static bool IsDestructor(MethodDefinition method)
{
return method.IsFamily
&& method.Name == "Finalize"
&& method.Overrides.Count == 1
&& method.Overrides[0].DeclaringType.FullName == "System.Object";
}
public static bool IsOperator(MethodReference method)
{
return method.Name.StartsWith("op_", StringComparison.Ordinal);
}
}
}
|