MyControlLibrary.Save.Save C# (CSharp) Method

Save() public method

public Save ( String PathFile, List Groups ) : System
PathFile String
Groups List
return System
        public Save(String PathFile, List<CharTabPage> Groups)
        {
            using (StreamWriter outfile = new StreamWriter(PathFile))
            {
                foreach (CharTabPage Group in Groups)
                {
                    List<Character> G = Group.getGroup();
                    foreach (Character PC in G)
                        outfile.Write(PC.ToString() + Environment.NewLine);
                    outfile.Write("*" + Environment.NewLine);
                }//end of outter foreach
            }//end of using
        }

Same methods

Save::Save ( String PathFile, List Group ) : System
Save