Doesn't seem like anything is appending to the arrays. When i call it in the mainform. it doesn't pull anything. am i missing anything here?
My Auth Class Code Snippet from its Constructor
VPNInfo[] avpns = new VPNInfo[] { };
this.raw_vpns = new string[] { };
int i = 0;
foreach (string line in vpns)
{
if (line.Contains("db.VPN{"))
{
string name = vpns[i + 1].Replace("name:", "").Replace("'", "").Trim();
string ip = vpns[i + 2].Replace("ip:", "").Replace("'", "").Trim();