Question : how to deal with more then one Document Class !

how to assign more then one document class with one FLA.

i have two fla's and both use document class , how to merge them ?

Answer : how to deal with more then one Document Class !

Try below code:
1:
2:
3:
4:
5:
6:
7:
List<string> l = new List<string>();
string[] strFile =  File.ReadAllLines("C:\\Test.txt");
l.AddRange(strFile);
l.RemoveAt(0);
l.RemoveAt(0);
        
File.WriteAllLines("C:\\Test.txt", l.ToArray());
Random Solutions  
 
programming4us programming4us