System.Web.UI.WebControls.ListBox.GetSelectedIndices C# (CSharp) Method

GetSelectedIndices() public method

public GetSelectedIndices ( ) : int[]
return int[]
		public virtual int[] GetSelectedIndices ()
		{
			return (int []) GetSelectedIndicesInternal ().ToArray (typeof (int));
		}
#endif		

Usage Example

 protected void remove( ListBox lb )
 {
     int[] selected = lb.GetSelectedIndices();
     foreach( int i in selected )
     {
         lb.Items.RemoveAt( i );
     }
 }
All Usage Examples Of System.Web.UI.WebControls.ListBox::GetSelectedIndices