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 我(小弟 小小弟)
{
this.我小弟 = 小小弟;
//註冊事件
this.我小弟.挨扁 += new EventHandler(this.担心);
}
public void 担心(object sender, EventArgs e)
{
Console.WriteLine("我担心");
}
}
class InstanceDelegate
{
[STAThread]
public static void Main ()
{
小弟 小弟弟 = new 小弟();
我 大哥 = new 我(小弟弟);
小弟弟.被扁();
Console.ReadLine();
} //end of main
}
}
分享到:
相关推荐
The WMIACPI sample contains ACPI BIOS and Microsoft Windows Management Instrumentation (WMI) sample code that enables instrumentation of the ACPI BIOS from within ACPI Source Language (ASL) code....
ComEvents EventReceiver ...This sample code is provided to illustrate a concept and should not be used in applications or Web sites, as it may not illustrate the safest coding practices.
- **Sample Code**: The book includes detailed code examples for implementing gesture recognizers and handling gesture events. #### 12. **Retrieving and Manipulating Contacts and Groups from the ...
This is a sample of android week view,Thanks the author of android week view ,The WeekHeaderView is based on android week view .This project contains two view ,the header view and day view.You can add...
| |__ user_events/ - Sample code for access to user event interrupts. | |__ xdma_info/ - Utility application which prints out the XDMA core ip | | configuration. | |__ xdma_rw/ - Utility for reading...
在这个"SwingLayouts_Components_SampleCode.zip"压缩包中,包含了关于Swing组件和布局管理器的示例代码,我们可以从中学习到以下几个重要的Java编程知识点: 1. **Swing组件**: - `JFrame`:这是所有Swing应用的...
A thumbnail component displays the Explorer thumbnailimages and the TJamShellNotifier informs you about numerous shell events.Interesting sample projects and help file with a lot of sample code are...
A thumbnail component displays the Explorer thumbnail images and the amShellNotifier informs you about numerous shell events.Interesting sample projects and help file with a lot of sample code are ...
讲述了自动化Office组件的基本知识和方法,是自动化Office组件的入门之作. ...10 Sample Code for Automating Microsoft Office Applications 11 Troubleshooting Common Problems 12 For More Information
The TJamShellList, TJamShellTree and ... Interesting sample projects and a help file with a lot of sample code are included. The ShellBrowser Delphi Edition is royalty free and involves no runtime fees.
创建一个具有repo > security_events权限的。 ( repo许可需要私人回购) 如GH_AUTH_TOKEN=inserttokenhere所示,将令牌添加到您的.env文件。 运行npm install安装节点依赖项 运行node get-code-scanning-alerts....
We're going to take the sample code from the Node.js website and expand on that. Chapter 2, A Basic Express Website, will be a basic Express website where we'll introduce the Express server. Chapter ...
It could include code to generate events (rather than read them from a file). And it could include code to describe more clearly what is going on whenever a node's probability is updated (e.g., what ...
Each recipe includes sample code you can use right away. Define the layout of UI elements with Cocoa Auto Layout Develop location-aware apps Get working examples for implementing gesture recognizers ...
The ShellBrowser component set gives a Delphiprogrammer easy access to the Win32 shellfunctionality.... Interesting sample projects andhelp file with a lot of sample code areincluded.
介绍这是一个Starter React应用程序,用于在构建GraphQL API时在AWS AppSync控制台中使用Sample应用程序。 Sample应用程序创建一个GraphQL模式并置备Amazon DynamoDB资源,然后将它们与解析器适当地连接。 该应用...
we'll discover how to use the newly introduced JavaScript promises and the new animation API in jQuery 3.0 in great detail, along with sample code and examples. By the end of the book, you will be ...
Part I: The C# Language 1 Chapter 1: .NET Architecture 3 The Relationship of C# to .NET 4 The Common Language Runtime 4 Advantages of Managed Code 4 A Closer Look at Intermediate Language 7 Support ...