Help plz build program
https://www.dropbox.com/s/nhtvvxqn3o...nsole.rar?dl=0
Printable View
Help plz build program
https://www.dropbox.com/s/nhtvvxqn3o...nsole.rar?dl=0
Here you go.
If you want to do it yourself just use visual studio 2015 and set the targeted .net framework to 3.5
Right click on the project in VS -> Properties -> Application Tab -> Target Framework -> .NET Framework 3.5
Than compile it.
It does not work when there is an error debug mode help fix
- - - Updated - - -
http://cs627719.vk.me/v627719434/40177/IGwGyy-p9wk.jpg
Fine here it runs, do not ask me to do anything else with it as your original request just asked for it to be compiled.
- - - Updated - - -
Just comment those lines out, all it is doing is telling it to set the default list to 0. Should have to do that to at least a few of them, after that it will run.
How do you correct the error?
Help write configuration
xml.Load("cfg/ServerConfig.xml");
XmlNodeList serverNodeList = xml.SelectNodes("/Servers/Server");
if (null != serverNodeList)
{
foreach (XmlNode serverNode in serverNodeList)
{
string name = serverNode.SelectSingleNode("name").InnerText;
string ip = serverNode.SelectSingleNode("ip").InnerText;
string port = serverNode.SelectSingleNode("port").InnerText;
string key = serverNode.SelectSingleNode("key").InnerText;
CenterServer server = new CenterServer();
server.Name = name;
server.Ip = ip;
server.Port = port;
server.Key = key;
serverList.Add(server);
}
}
LoadMailDbCfg();
LoadDBQueryInfo();
}
Just google how to create a XML file and you will have the layout you need to use and all you have to do is rename the elements.
Really need to do if I can throw SOURCE MOBA Android