C#
学习C#的总结
时光找茬
这个作者很懒,什么都没留下…
展开
-
c# 计算程序时间
using System.Diagnostics;//引用相关的命名空间 Stopwatch st=new Stopwatch ();//实例化类 Console.WriteLine("{0} ===== begin func ====", getLogFormatTime()); st. Start();//开始计时 // 需要统计时间的代码段 // Thread.Sleep(10000); st.Stop();//终止计时 Console.WriteLine("{0} ===== end func原创 2021-12-13 22:40:12 · 339 阅读 · 0 评论 -
委托的三种调用方法 同步调用 异步调用 异步回调
委托的调用方法 同步调用 异步调用 异步回调 下面通过代码展示, 首先定义需要委托的函数 using System; using System.Threading; namespace BeginInvokeDemo { public class Calculator { public static int Add(int a, int b) { Console.WriteLine("[{0}] Begin to calc:原创 2021-11-10 17:41:35 · 1032 阅读 · 0 评论 -
C# 名词缩写
C# 标准发音:See Sharp FCL:框架类库(FrameWrok Class Library) BCL:基础类库(Base Class Library) CLR:公共语言运行库(Common Language Runtime) GC:垃圾回收(Garbage Collector) COM:组件对象模型(Component Object Model) MFC:微软基础类库(Microsoft Foundation Class) CIL:公共中间语言(Common Intermediate Langu.转载 2021-10-14 10:53:57 · 430 阅读 · 0 评论 -
XAML命令空间规则
在学习WPF时,每个WPF界面都需要设置xmlns,以及xmlns:x的内容,具体如下: <Window x:Class="WpfApp1.New" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:d="http://schemas.microsoft.com/express原创 2021-10-14 10:51:10 · 120 阅读 · 0 评论 -
C# 常用命名空间说明
System:其中包含的类型为引用程序需要的一些基本类型: System.Coliection:其下的类型主要用于管理集合。如堆栈、队列、散列表等。 Syetm.Diagnostics:其下的类用于处理帮助诊断和调试引用程序。 System.EnterpriseServices:其下的类型用于处理管理事务、队里组件、对象池、JIT激活(.NET中的企业服务中对象的及时激活技术)、安全以及其他一些高级服务程序中托管代码效能。 Sysetm.Globalization:其下类用于支持多国语言。 System..原创 2021-10-14 09:17:33 · 359 阅读 · 0 评论