C#学习.99乘法口诀表
static void Main(string[] args) { //9*9乘法口诀表 for (int i = 1; i <= 9; i++) ...
static void Main(string[] args) { //9*9乘法口诀表 for (int i = 1; i <= 9; i++) ...
class Program { static void Main(string[] args) { int num1, num2; bool b = in...
#region 奥特曼打小怪兽// Random r = new Random();//定义奥特曼的数据//string atmName = \"奥特曼\";//int atmHP = 100;//int atmATK = r.Next(8...
这是本人学习C#之后,写的第一个代码量比较大的控制台程序,如果有什么问题欢迎批评指导。 class Program { //定义地图数组 public static int[] Maps...
1.组件:类,对旬服务:接口2.只注册组件中的类(是不是可以只注册对象)3.注册类并暴露为服务4.注册组件中的对象度暴露为服务5.注册所有的组件 (类) 并且暴露他们的服务 (接口)
如何加载非托管Dll 我们总会遇到需要加载非Win32的非托管dll,这里推荐一种方式就是将那些非win32的非托管dll嵌入资源的方式,在入口解压并且加载的方式,我先来看看如何实现吧,首先我们准备好demo,新增控制台项目如下: 代码如下...
namespace ConsoleApp1{class Program{delegate int myDelegate(int t); //定义委托 返回值类型 入参类型static int num = 10;static void Mai...
static long FileOrDirCount(string path) { long count = 0; //统计File个数 try...
//从小到大排序 static void Main(string[] args) { int[] nums = { 1, 3, 5, 4, 6, 2 }; for ...
class MainClass{public static void Main(string[] args){#region 选择题// 1 B// 2 D// 3 C// 4 BCD// 5 CD// 6 A// 7 B// 8 ABD/...