1.首先,配置一个公用的WEBAPI服务接口: 2.在引用的项目层里添加JasonContainer类(即引用),用来访问对应的类 ,规则是以BL开头及以Service结尾的.cs文件,通过反射生产对应的类实例 3.在引用的项目层里添加AssemblyProvider.cs 4.WebAPIConi ...
Table of Contents 1. "常用命令" 1. "文件属性修改" 1. "修改文件所有者" 2. "修改文件所有者组" 3. "同时修改所有者和所有者组" 2. "本地化语言" 1. "本地化设置三个条件" 2. "本地化设置" 2. "系统升级" 3. "安装软件" 1. "port ...
分类:
其他好文 时间:
2019-01-08 23:41:19
阅读次数:
291
1.值类型(System.ValueType类)和栈(Stack) System.ValueType--bool、byte、char、decimal、double、enum、float、int、long、sbyte、short、struct、unit、ulong、ushort。 栈是编译期间就分配好 ...
如何成为一名黑客 Eric Steven Raymond https://translations.readthedocs.org/en/latest/hacker_howto.html How To Become A Hacker Eric Steven Raymond http://catb.o ...
分类:
编程语言 时间:
2019-01-06 15:01:18
阅读次数:
216
继续维护并补充中,如果有遗漏,请联系补充。 ...
分类:
编程语言 时间:
2019-01-05 21:35:35
阅读次数:
237
Effective C++ Scott Meyers Chapter 7. Templates and Generic Programming 1. Item 45: Use member function templates to accept "all compatible types". Co ...
分类:
其他好文 时间:
2019-01-05 00:10:33
阅读次数:
217
在VC裡頭使用 Api必須include 跟加入 lib,加入之後就可以在VC裡頭任意使用api了 Dialog head file FindHid WriteFile ReadFile OutReport InReprot ...
分类:
编程语言 时间:
2019-01-04 23:09:51
阅读次数:
247
``` C#
using System.Collections;
using System.Collections.Generic;
using UnityEngine; public class TestParams:MonoBehaviour{ private void Start(){ tes... ...
01 整型int 1 用途:记录年龄、等级、年等整数相关 2 定义方式 age = 18 # age = int(18) 数据类型转换:int可以将纯数字的字符串转换成整型 n = int('123') 3 常用操作+内置的方法 算术运算&逻辑运算 4 总结 存一个值 不可变类型 02 浮点型flo ...
分类:
编程语言 时间:
2019-01-03 16:46:58
阅读次数:
165