using System.Collections.Generic; using System.Linq; namespace LibMpc { public interface IMpcCommand { string Value { get; } IDictionary FormatResponse(IList> response); } internal static class MpdCommandExtensions { public static IDictionary ToDefaultDictionary(this IList> items) { return items.ToDictionary(item => item.Key, item => item.Value); } } }