A special person is responsible for collecting new clothing styles from various stalls in the clothing market and publishing them in the photo album of friends circle. See 933308 for reference. He will send the new styles of each first-class clothing market to a circle of friends and spell out the order with others, so every model doesn't need 10 to start.
.
New project-> visual c++-& gt; Win32 project MyDLL
Note: the DLL written by C++ cannot be directly called by C#, so it is necessary to create a new C++ project and repackage the methods in the DLL into functions that can be called by C# externally.
The code in MyDLL.cpp is as follows:
extern " C " _ declspec(dll export)int add(int a,int b)
Note: the function must be preceded by extern "c" _ declspec (DLLExport), which can be referenced from outside.
Project-> Attribute-> General->; Common * * * language runtime support-> Common * * * language runtime support (/clr)
F5 compiler, find the generated MyDLL.dll target file in the debugging folder for backup.