Ejemplo n.º 1
0
 public StandaloneGCStaticDescRegionNode(GCStaticDescNode standaloneGCStaticDesc)
 {
     _standaloneGCStaticDesc = standaloneGCStaticDesc;
 }
Ejemplo n.º 2
0
        internal int CompareTo(GCStaticDescNode other, TypeSystemComparer comparer)
        {
            var compare = _isThreadStatic.CompareTo(other._isThreadStatic);

            return(compare != 0 ? compare : comparer.Compare(_type, other._type));
        }