C# 委托Delegate的使用 笔记
2021-04-30 12:28
标签:笔记 catch 属性 nbsp pre stat 线程 ram str 使用delegate总是一头雾水,记录一下笔记,备忘。 主要用于线程间操作UI上的控件,以便使用。或者是大家统一操作入口使用。 C# 委托Delegate的使用 笔记 标签:笔记 catch 属性 nbsp pre stat 线程 ram str 原文地址:http://www.cnblogs.com/ufk119/p/7804352.html 1 using System.Windows.Forms;
2
3 namespace System.Delegate
4 {
5 public static class UIDelegate
6 {
7 //------------------
8 public delegate void myDelegateW(Control str, string s);
9 public delegate string myDelegateR(Control str);
10 //------------------
11
12 ///
文章标题:C# 委托Delegate的使用 笔记
文章链接:http://soscw.com/index.php/essay/80401.html