QuickGraph.Heap.GcTypeHeap.Touching C# (CSharp) Méthode

Touching() public méthode

public Touching ( string typeNames ) : GcTypeHeap
typeNames string
Résultat GcTypeHeap
        public GcTypeHeap Touching(string typeNames)
        {
            if (String.IsNullOrEmpty(typeNames))
                throw new ArgumentNullException("typeNames");

            return this.Clone().TouchingInPlace(typeNames);
        }