• 博客园logo
  • 会员
  • 众包
  • 新闻
  • 博问
  • 闪存
  • 赞助商
  • HarmonyOS
  • Chat2DB
    • 搜索
      所有博客
    • 搜索
      当前博客
  • 写随笔 我的博客 短消息 简洁模式
    用户头像
    我的博客 我的园子 账号设置 会员中心 简洁模式 ... 退出登录
    注册 登录
~Joke_crazy
爱生活,爱拉芳!
   首页    新随笔       管理     

C# 方法扩展

using System.Collections.Generic;

namespace Extra_Function
{
    public static class Function
    {
        public static T Pop<T>(this List<T> list)
        {
            if (list != null && list.Count > 0)
            {
                T value = list[list.Count - 1];
                list.RemoveAt(list.Count - 1);
                return value;
            }
            else
            {
                return default(T);
            }
        }

        public static T Peek<T>(this List<T> list)
        {
            if (list != null && list.Count > 0)
            {
                return list[list.Count - 1];
            }
            else
            {
                return default(T);
            }
        }

        public static void Push<T>(this List<T> list, T value)
        {
            list.Add(value);
        }
    }
}
View Code

 

posted @ 2019-03-21 18:05  ~Joke_crazy  阅读(101)  评论(0)    收藏  举报
刷新页面返回顶部
博客园  ©  2004-2025
浙公网安备 33010602011771号 浙ICP备2021040463号-3