www.pudn.com > ppc_edit-1.2-src.zip > DualStringList.cs


using System; 
using System.Collections.Generic; 
using System.Text; 
 
namespace Modules 
{ 
    class DualStringList 
    { 
        ///this class contains two lists of strings 
        public List oldVal; 
        public List newVal; 
        public DualStringList() 
        { 
            oldVal = new List(); 
            newVal = new List(); 
        } 
    } 
}