System.Web.UI.SimpleWebHandlerParser.GetAndRemove C# (CSharp) 메소드

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

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