System.UriBuilderExtensions.AsKeyValuePairs C# (CSharp) 메소드

AsKeyValuePairs() 개인적인 정적인 메소드

private static AsKeyValuePairs ( this collection ) : string>>.IEnumerable
collection this
리턴 string>>.IEnumerable
		private static IEnumerable<KeyValuePair<string, string>> AsKeyValuePairs(this NameValueCollection collection)
		{
			return collection.AllKeys.Select(key => new KeyValuePair<string, string>(key, collection.Get(key)));
		}