internal ScreensaverForm(int thisDisplayId, UrlList urlList) { InitializeComponent(); // Assign the number to an accessible variable _thisDisplayIdId = thisDisplayId; _urlList = urlList; }
private static UrlList createUrlList() { var urlList = new UrlList(); urlList.addUrl("http://www.bbc.co.uk/news/"); urlList.addUrl("https://www.google.com/news?vanilla=1"); urlList.addUrl("http://news.ycombinator.com/"); return urlList; }