I have two string arrays -
            string[] One = new string[3];
            One[0] = "Pen";          
            One[1] = "Pencil";          
            One[2] = "card"; 
and,
            string[] Two = new string[2];
            Two[0] = "card";          
            Two[1] = "drive";      
Now, I want a new string array from these two, such that the final result does not contain any element of the Two array. i.e. it should have, "Pen", "Pencil" only.
 
     
     
    