我有用C#制作的计算器,我想制作一个.c
来压缩所有文件。我知道如何像一个文件.h
或WindowsFormsApplication2
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;
};