首页 > Windows开发 > 详细

C#委托之泛型

时间:2016-05-24 10:25:19      阅读:166      评论:0      收藏:0      [点我收藏+]
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;

namespace ConsoleApplication2
{
    class Program
    {
        public delegate int ceshi<T>(T o1, T o2);
        static void Main(string[] args)
        {
            string[] o = { "abCdeg", "ssxAf" };
           string xa= zheng<string>(o, delegate(string o1, string o2)
            {
                string num1 = (string)o1;
                string num2 = (string)o2;
                return num1.Length - num2.Length;

            });
           Console.WriteLine(xa);
           Console.ReadKey();
        }

        public static T zheng<T>(T[] name, ceshi<T> aaax)
        {

            T max = name[0];
            for (int i = 0; i < name.Length; i++)
            {
                //max-name[i]<0
                if (aaax(max, name[i]) < 0)
                {
                    max = name[i];
                }
            }
            return max;
        }
    }
}

  

C#委托之泛型

原文:http://www.cnblogs.com/mengluo/p/5522486.html

(0)
(0)
   
举报
评论 一句话评论(0
关于我们 - 联系我们 - 留言反馈 - 联系我们:wmxa8@hotmail.com
© 2014 bubuko.com 版权所有
打开技术之扣,分享程序人生!