This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ReSharper disable once CheckNamespace | |
| namespace System.Collections.Generic | |
| { | |
| /// <summary> | |
| /// Helper extension methods for collections implementing <see cref="IList{T}" /> interface. | |
| /// </summary> | |
| public static class IListExtensions | |
| { | |
| /// <summary> | |
| /// Adds item to sorted list. The method assumes the list is sorted according to default or passed in comparer. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #region Usings | |
| using System; | |
| using System.Reflection; | |
| using System.Threading.Tasks; | |
| using System.Windows.Input; | |
| #endregion | |
| namespace AsyncCommandGist |