在自己项目各层按图中设置(原理:编译后运行控制台程序,copy工作是让控制台程序完成的) 控制台程序源码 public class Program { public static void Main(string[] args) { //string para1 = @"D:\word_code\S ...
分类:
其他好文 时间:
2020-06-17 19:51:51
阅读次数:
56
在工作目录编辑c_cpp_properties.json文件 添加defines字段 { "configurations": [ { "name": "Win32", "includePath": [ "D:\\Program Files (x86)\\Arduino\\tools\\**", "D ...
分类:
其他好文 时间:
2020-06-17 01:25:03
阅读次数:
127
using System; using System.Collections.Generic; namespace ConsoleApp2 { class Program { static void Main(string[] args) { App app = new App(); app.Use ...
分类:
Web程序 时间:
2020-06-16 23:23:04
阅读次数:
83
现在都习惯安装绿色版软件 但如何配置文件就至关重要,系统配置文件后缀.ini 数据库的配置文件为my.ini,下面是配置文件里面的属性介绍,我觉得非常有用 basedir=C:/Program Files/MySQL/MySQL Server 5.7/ datadir=C:/ProgramData/ ...
分类:
数据库 时间:
2020-06-16 20:10:58
阅读次数:
68
Scope: Current File Program: (node地址): E:\node\node_global\lessc.cmd Arguments: --no-color $FileName$ Output paths to refresh: $FileNameWithoutExtensi ...
分类:
Web程序 时间:
2020-06-16 18:27:31
阅读次数:
79
在本章写远程ls程序rls.c和rlsd.c时,while( msglen = read( sock_id, message, BUFSIZ ) > 0 )导致了严重的错误——客户端收到服务器返回的信息,但什么都不打印。 具体代码如下: /* rls.c - client program of re ...
分类:
其他好文 时间:
2020-06-16 13:09:14
阅读次数:
47
题目: Given a positive integer n, write a program to find out a nonzero multiple m of n whose decimal representation contains only the digits 0 and 1. Y ...
分类:
其他好文 时间:
2020-06-16 12:50:35
阅读次数:
58
1.下载&&安装 charles官网 charles下载 下载后直接安装即可。 2.汉化 下载提供的汉化包charles.jar(加群557290993下载) 将charles.jar放到Charles安装目录的lib目录下,如:C:\Program Files\Charles\lib 重启Char ...
分类:
其他好文 时间:
2020-06-15 15:48:23
阅读次数:
51
DATA(update_date) = '20020615'. SELECT SINGLE update_date INTO @update_date FROM ztest WHERE update_date = '20020616'. WRITE update_date. 当表中不存在数据时 即返 ...
分类:
其他好文 时间:
2020-06-15 13:45:35
阅读次数:
33
创建一个依赖注入容器 class Program { static void Main(string[] args) { //创建一个依赖注入容器(IServiceProvider) var service = new ServiceCollection().AddSingleton<IPerson ...
分类:
其他好文 时间:
2020-06-14 16:56:21
阅读次数:
47