`
sabolasi
  • 浏览: 910293 次
文章分类
社区版块
存档分类
最新评论
文章列表
using System; namespace ConsoleApp_CS{ class 小弟{//1.聲明事件實例public event EventHandler 挨扁; //2.包含事件private void 挨扁了(EventArgs e){if(this.挨扁 != null)this.挨扁(this, e);} //3.觸發事件public void 被扁(){Console.WriteLine("被扁ing...");this.挨扁了(EventArgs.Empty);}} class 我{private 小弟 我小弟 = null; public 我(小弟 ...
Introduction to DataSets and working with XML files By Alexandru Savescu 数据集与XML文件的使用介绍 This article gives you an introduction to .NET's DataSets and how you can use them with XML files 这篇文章介绍了.NET数据集并教会你如何把它们跟XML文件结合起来使用 Introduction 介绍 This article gives you an introduction to using DataSet ...
Check Your Internet Connection With C#By Simohamed Attahri 用C#检测你的网络连接 How to check if your computer is connected to the internet with C#. It's much more easier that other tutorials I've seen in other sites. In deed, we're going to use a simple API function InternetGetConnectedState, to return a b ...
Don't believe everything they've told you. Threads in C# are actually pretty easy. 别相信别人告诉你的所有的事。其实C#中的线程是很简单的。 A thread is an encapsulation of the flow of control in a program. you might be used to writing single-threaded programs - that is, pro ...
Author Date Of Submission User Level
Global site tag (gtag.js) - Google Analytics