public void AddNewUrl(string url) { var index = SharePointWebUrlHistory.IndexOf(url); if (index >= 0) { SharePointWebUrlHistory.RemoveAt(index); } SharePointWebUrlHistory.Insert(0, url); }
public void AddNewUrl(string url) { if (string.IsNullOrEmpty(url)) { return; } var index = SharePointWebUrlHistory.IndexOf(url); if (index >= 0) { SharePointWebUrlHistory.RemoveAt(index); } SharePointWebUrlHistory.Insert(0, url); }