示例#1
0
    public static void Main(string[] Args)
    {
        if (Args.Length != 2)
        {
            Console.WriteLine("Usage: m4aEncrypt.exe infile.m4a outfile.m4p");
            return;
        }
        Encrypt encrypt = new Encrypt(Args[0], Args[1]);

        encrypt.Open();
        encrypt.Parse();
        encrypt.DrawTree();
        encrypt.Report();
        encrypt.Process();
        encrypt.DrawTree();
        encrypt.Close();
    }