本文整理汇总了C#中TypeInfo.getField方法的典型用法代码示例。如果您正苦于以下问题:C# TypeInfo.getField方法的具体用法?C# TypeInfo.getField怎么用?C# TypeInfo.getField使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TypeInfo
的用法示例。
在下文中一共展示了TypeInfo.getField方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: isStructurallyEqual
public static bool isStructurallyEqual(TypeInfo oldType, TypeInfo newType) {
if (oldType.IsNestedPrivate) {
return true;
}
if (!sameTypes(oldType.BaseType, newType.BaseType)) {
return false;
}
foreach (var i in oldType.Interfaces) {
bool found = false;
foreach (var j in newType.Interfaces) {
if (sameTypes(i, j)) {
found = true;
break;
}
}
if (!found) {
return false;
}
}
foreach (var f in oldType.Fields.where(p => !p.IsSynthetic && !p.IsPrivate)) {
var g = newType.getField(f.Name);
if (g == null) {
return false;
}
if (!sameTypes(f.Type, g.Type)) {
return false;
}
if (f.IsStatic != g.IsStatic) {
return false;
}
if (f.IsPublic != g.IsPublic) {
return false;
}
if (f.IsProtected != g.IsProtected) {
return false;
}
if (f.IsPrivate != g.IsPrivate) {
return false;
}
if (f.IsFinal != g.IsFinal) {
return false;
}
}
foreach (var f in newType.Fields.where(p => !p.IsSynthetic && !p.IsPrivate)) {
var g = oldType.getField(f.Name);
if (g == null) {
return false;
}
}
foreach (var m in oldType.Methods.where(p => !p.IsSynthetic && !p.IsPrivate)) {
var found = false;
foreach (var n in newType.Methods.where(p => !p.IsSynthetic && !p.IsPrivate)) {
if (sameMethods(m, n)) {
if (m.IsStatic != n.IsStatic) {
return false;
}
if (m.IsPublic != n.IsPublic) {
return false;
}
if (m.IsProtected != n.IsProtected) {
return false;
}
if (m.IsPrivate != n.IsPrivate) {
return false;
}
if (m.IsFinal != n.IsFinal) {
return false;
}
found = true;
break;
}
}
if (!found) {
return false;
}
}
foreach (var m in newType.Methods.where(p => !p.IsSynthetic && !p.IsPrivate)) {
var found = false;
foreach (var n in oldType.Methods) {
if (sameMethods(m, n)) {
found = true;
break;
}
}
if (!found) {
return false;
}
}
return true;
}