www.pudn.com > ppc_edit-1.2-src.zip > DualCharList.cs
using System;
using System.Collections.Generic;
using System.Text;
namespace Modules
{
class DualCharList
{
///this class contains two lists of strings
public List a;
public List b;
public DualCharList()
{
a = new List();
b = new List();
}
}
}