help me please! I have a list:
List<string[]> Data = new List<string[]> { new string[] {"nol", "odin", "dva", "tri", " four"}, new string[] {"nol", "odin", "dva", "tri", " four"}, new string[] {"nol", "odin", "dva", "tri", " four"} }; and an array of indexes that need to be removed. It can be of different lengths.
int[] removesindex = {1, 3, 4}; that is, I want to get such a list
List<string[]> newData = new List<string[]> { new string[] {"nol", "dva"}, new string[] {"nol", "dva"}, new string[] {"nol", "dva"} }; I can get the opposite indexes that should be left