本文整理汇总了C#中Mono.Cecil.MethodDefinition.Reuses方法的典型用法代码示例。如果您正苦于以下问题:C# MethodDefinition.Reuses方法的具体用法?C# MethodDefinition.Reuses怎么用?C# MethodDefinition.Reuses使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Mono.Cecil.MethodDefinition
的用法示例。
在下文中一共展示了MethodDefinition.Reuses方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: VisitMethod
public void VisitMethod(MethodDefinition method)
{
Log.DebugLine(this, "{0}", method.Name);
if (!m_type.IsNestedPrivate && m_type.IsValueType && !m_needsCheck && method.IsVirtual)
{
if (method.Reuses("System.Boolean", "Equals", "System.Object"))
{
m_needsCheck = true;
}
}
}
示例2: VisitMethod
public void VisitMethod(MethodDefinition method)
{
if (m_needsCheck)
{
if (method.Reuses("System.Boolean", "Equals", "System.Object"))
{
Log.DebugLine(this, "{0}", method);
m_foundEquals = true;
}
else if (method.Matches("System.Int32", "CompareTo", method.DeclaringType.FullName))
{
Log.DebugLine(this, "{0}", method);
m_foundCompare = true;
}
}
}
示例3: VisitMethod
public void VisitMethod(MethodDefinition method)
{
if (method.IsPublic)
{
Log.DebugLine(this, "{0}", method);
if (method.Name == "op_Addition")
{
m_hasAdd = true;
}
else if (method.Name == "op_Subtraction")
{
m_hasMinus = true;
}
else if (method.Reuses("System.Boolean", "Equals", "System.Object"))
{
m_hasEquals = true;
}
}
}
示例4: DoIsEquals
// Return true if the method matches one of:
// public override bool Equals(object)
// public bool Equals(xxx), where xxx is not a value type
private static bool DoIsEquals(MethodDefinition method)
{
bool equals = false;
if (method.Reuses("System.Boolean", "Equals", "System.Object"))
equals = true;
else if (method.Matches("System.Boolean", "Equals", method.DeclaringType.FullName))
if (!method.IsStatic)
if (!method.Parameters[0].ParameterType.IsValueType)
equals = true;
return equals;
}