System.Web.HttpApplicationState.RemoveAt C# (CSharp) Method

RemoveAt() public method

public RemoveAt ( int index ) : void
index int
return void
		public void RemoveAt (int index)
		{
			try {
				_Lock.EnterWriteLock ();
				BaseRemoveAt (index);
			} finally  {
				_Lock.ExitWriteLock ();
			}      
		}

Usage Example

 public override void RemoveAt(int index)
 {
     w.RemoveAt(index);
 }
All Usage Examples Of System.Web.HttpApplicationState::RemoveAt