Esempio n. 1
0
 internal static void AddItem(ref nsAtomList @this, nsAtomList item)
 {
     while (@this != null)
     {
         @this = @this.mNext;
     }
     @this = item;
 }
Esempio n. 2
0
 // Public interface
 internal static IEnumerable<string> TraverseList(nsAtomList @this)
 {
     return @this.TraverseList(i => i.mNext).Select(i => i.mAtom);
 }
Esempio n. 3
0
 internal static void AddItem(ref nsAtomList @this, nsAtomList item)
 {
     while (@this != null)
         @this = @this.mNext;
     @this = item;
 }
Esempio n. 4
0
        // Public interface

        internal static IEnumerable <string> TraverseList(nsAtomList @this)
        {
            return(@this.TraverseList(i => i.mNext).Select(i => i.mAtom));
        }