91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

c# distinctby能處理日期時間嗎

c#
小樊
81
2024-11-28 17:15:11
欄目: 編程語言

是的,C# 的 DistinctBy 方法可以處理日期時間。DistinctBy 是 LINQ 擴展方法,用于根據指定的屬性返回一個新的不重復元素序列。你可以使用 DistinctBy 方法對日期時間序列進行去重。

以下是一個示例:

using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<DateTime> dateTimeList = new List<DateTime>
        {
            DateTime.Now,
            DateTime.Now.AddDays(1),
            DateTime.Now.AddHours(2),
            DateTime.Now.AddDays(1),
            DateTime.Now.AddHours(2)
        };

        var distinctDateTimeList = dateTimeList.DistinctBy(dt => dt.Date);

        foreach (var dateTime in distinctDateTimeList)
        {
            Console.WriteLine(dateTime);
        }
    }
}

在這個示例中,我們創建了一個包含多個日期時間的列表。然后,我們使用 DistinctBy 方法根據日期部分對列表進行去重。最后,我們遍歷并輸出去重后的日期時間列表。

0
桐庐县| 余庆县| 桓仁| 班戈县| 上栗县| 资源县| 综艺| 永春县| 富蕴县| 牟定县| 安福县| 台湾省| 宜昌市| 开鲁县| 开江县| 靖远县| 汝城县| 玛沁县| 本溪市| 德江县| 吉木乃县| 财经| 莱西市| 盈江县| 长宁县| 新田县| 芦山县| 盐边县| 隆德县| 博湖县| 平凉市| 广东省| 临高县| 兴安县| 锡林郭勒盟| 密山市| 岳池县| 望奎县| 梧州市| 肃北| 连江县|