压缩文件的Makefile

时间:2016-04-23 13:10:42

标签: c# .net makefile

我有用C#制作的计算器,我想制作一个.c来压缩所有文件。我知道如何像一个文件.hWindowsFormsApplication2 and in this folder are : ClassLibrary1, WindowsFormsApplication2, WindowsFormsApplication2.sln .... 一样压缩,但我不知道如何像整个文件夹一样压缩。任何人都可以帮助我吗?

class A {
public:
  A();
  A(const A &other);
  A(const A &&other);

  A& operator = (const A &other);
  A& operator = (const A &&other);
};

class B {
private:
  static A _a;
  struct Initializer {
    Initializer();
  };
  static Initializer _init;
};

0 个答案:

没有答案