System.Web.UI.SimpleWebHandlerParser.GetAndRemove C# (CSharp) Method

GetAndRemove() static private method

static private GetAndRemove ( IDictionary table, string key ) : string
table IDictionary
key string
return string
		static string GetAndRemove (IDictionary table, string key)
		{
			string o = table [key] as string;
			table.Remove (key);
			return o;
		}