删除websphere应用程序服务器8.5中的现有汽车文件

时间:2018-06-05 14:21:50

标签: java websphere-8

您好我已经使用以下评论导入了我的汽车文件。

class Program
{
    static void Main()
    {
        List<Tuple<string, int>> test = new List<Tuple<string, int>>
        {
            new Tuple<string, int>("one",   1),
            new Tuple<string, int>("two",   2),
            new Tuple<string, int>("three", 3)
        };

        var extract = new TupleExtraction<string, int>(test);

        for (int i = 0; i < extract.Count; ++i)
            Console.WriteLine(extract[i]);

        foreach (var item in extract)
            Console.WriteLine(item);
    }
}

我想将旧文件从old.car替换为new.car 有人可以建议吗?

0 个答案:

没有答案