Castle.ActiveRecord.Any.MetaValueAttribute.IComparable C# (CSharp) Метод

IComparable() приватный Метод

This is here so the XmlGenerationVisitor will always output the meta-values in consistent order, to aid the tests.
private IComparable ( object obj ) : int
obj object
Результат int
			int IComparable.CompareTo(object obj)
			{
				MetaValueAttribute other = (MetaValueAttribute)obj;
				return Class.FullName.CompareTo(other.Class.FullName);
			}
		}
Any.MetaValueAttribute