You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
412 B
C#
19 lines
412 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Study.DelegateSeries.Core
|
|
{
|
|
/// <summary>
|
|
/// 显示类型名 委托
|
|
/// </summary>
|
|
/// <returns>类型名</returns>
|
|
public delegate string ShowTypeNameDelegate();
|
|
|
|
/// <summary>
|
|
/// 显示人名 委托
|
|
/// </summary>
|
|
/// <returns>人名</returns>
|
|
public delegate string ShowPersonName();
|
|
}
|