12 2023 档案
摘要:c++ 调用c#dll (2种方式,com组件和clr工程)_c++调用c#dll-CSDN博客 C++调用C#总结_clrcreateinstance-CSDN博客 VS2017使用C#编写COM组件_registerforcominterop-CSDN博客 C#开发COM组件 - Mask1 -
阅读全文
摘要:// test.cpp : 定义控制台应用程序的入口点。 // #pragma warning( disable : 4996 ) #include "stdafx.h" #include "time.h" #include "windows.h" #include <iostream> using
阅读全文
摘要:#include <iostream> #include<thread> using namespace std; struct MyStruct { int a = 0; string s = "abc雷"; };//线程入口 void proc(MyStruct& a) { for (int m
阅读全文
摘要:C++ 引用Lib和Dll的方法总结_c++引用lib-CSDN博客 C++引用C++ dll(动态链接库)中的命名空间,类_c++ dll 继承类-CSDN博客 无论是动态库或静态库,都可导出函数和类
阅读全文
摘要:原文: Windows下Nginx的启动、停止等命令_nginx windows 启动命令-CSDN博客 启动: start nginx 或nginx.exe //前一个在后台运行,使用默认配置文件 nginx.exe -c 配置文件 //指令配置文件 停止: nginx -s stop 或ngin
阅读全文
摘要:在连接Firebird4数据库时,使用以下: FbDataAdapter da = new FbDataAdapter(sql, this.cnstring); DataTable dt = new DataTable(); da.Fill(dt); return dt; 在一直的相像中,FbDat
阅读全文
摘要:官方文档: https://mariadb.com/kb/en/getting-started-with-myrocks/ TokuDB引擎已停止维护,现在使用MyRocks引擎 默认没有引用,可在[mysqld]下面加以下参数来启动。 [mysqld]plugin_load_add = ha_ro
阅读全文