using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; namespace PCScreenSavers { class MainApp { [STAThread] public static void Main(string[] args) { App app = new App(); app.InitializeComponent(); //if (args.Count() > 0) //{ // string[] str = args[0].ToString().Split('|'); // if (str.Count() > 1) // { // app.HttpUrl = str[0]; // app.LocalIP = str[1]; // } //} //app.HttpUrl = args[0]; app.Run(); } } }