Dinesh Santhalingam

Dinesh Santhalingam

  • NA
  • 737
  • 359.2k

How to get the element of array in c#?

Jan 20 2017 12:09 AM
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)