First ask User to choose the number which is in the array then after find the both index of number and number
remove both index and number in this index
For example:
Number which has been chosen by user:
95
if this is your array:
| 9 | 10 | 11 | 22 | 44 | 95 | 35 |
after removing:
| 9 | 10 | 11 | 22 | 44 | 35 |

Jignesh TrivediPosted Mar 31, 2014, 7:57 AM
Please refer
http://stackoverflow.com/questions/496896/how-to-delete-an-element-from-an-array-in-c-sharp
it contains multiple method to remove data from array.
hope this will help you.
Abhay ShankerPosted Mar 29, 2014, 10:49 PM
Shweta LodhaPosted Mar 29, 2014, 12:47 PM