Welcome to mirror list, hosted at ThFree Co, Russian Federation.

IReadOnlyOrderedDictionary.cs « Xamarin.PropertyEditing - github.com/xamarin/Xamarin.PropertyEditing.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 29233702420763f1bebcf557ae6892a7042ce82b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
using System;
using System.Collections.Generic;

namespace Cadenza.Collections
{
	internal interface IReadOnlyOrderedDictionary<TKey, TValue>
		: IReadOnlyDictionary<TKey, TValue>
	{
		KeyValuePair<TKey, TValue> this[int index] { get; }

		int IndexOf (TKey key);
	}
}