3
Answers

How to get the element of array in c#?

I have the string Array .
  1. String[]Array={"Animal","Bull","dog","cat","fox","lion","Birds","Peacock","Peahen","crow","Parrot",
  2.    "Sparrow"};  
 Here I Size of the array is 12.I want to get all the element of an array After the "Birds" .
 Desired O/p:
  1. String[] res={ "Peacock","Peahen","crow","Parrot", "Sparrow"};  
Answers (3)