中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

c#中for循環如何與LINQ結合

c#
小樊
82
2024-09-20 06:41:25
欄目: 編程語言

在C#中,你可以將for循環與LINQ(Language Integrated Query)結合使用,以便在遍歷集合時對其進行篩選、排序和投影等操作。以下是一些示例:

  1. 使用for循環和LINQ篩選:
using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<int> numbers = new List<int> { 1, 2, 3, 4, 5, 6, 7, 8, 9 };

        // 使用for循環和LINQ篩選大于5的數字
        List<int> result = new List<int>();
        for (int i = 0; i < numbers.Count; i++)
        {
            if (numbers[i] > 5)
            {
                result.Add(numbers[i]);
            }
        }

        // 使用LINQ篩選大于5的數字
        var resultWithLINQ = numbers.Where(x => x > 5);

        Console.WriteLine("使用for循環的結果:");
        foreach (int num in result)
        {
            Console.WriteLine(num);
        }

        Console.WriteLine("\n使用LINQ的結果:");
        foreach (int num in resultWithLINQ)
        {
            Console.WriteLine(num);
        }
    }
}
  1. 使用for循環和LINQ排序:
using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<int> numbers = new List<int> { 5, 3, 9, 1, 7 };

        // 使用for循環和LINQ排序
        for (int i = 0; i < numbers.Count - 1; i++)
        {
            for (int j = 0; j < numbers.Count - 1 - i; j++)
            {
                if (numbers[j] > numbers[j + 1])
                {
                    int temp = numbers[j];
                    numbers[j] = numbers[j + 1];
                    numbers[j + 1] = temp;
                }
            }
        }

        // 使用LINQ排序
        var resultWithLINQ = numbers.OrderBy(x => x);

        Console.WriteLine("使用for循環的結果:");
        foreach (int num in numbers)
        {
            Console.WriteLine(num);
        }

        Console.WriteLine("\n使用LINQ的結果:");
        foreach (int num in resultWithLINQ)
        {
            Console.WriteLine(num);
        }
    }
}
  1. 使用for循環和LINQ投影:
using System;
using System.Collections.Generic;
using System.Linq;

class Program
{
    static void Main()
    {
        List<int> numbers = new List<int> { 1, 2, 3, 4, 5 };

        // 使用for循環和LINQ投影
        List<int> squares = new List<int>();
        for (int i = 0; i < numbers.Count; i++)
        {
            squares.Add(numbers[i] * numbers[i]);
        }

        // 使用LINQ投影
        var resultWithLINQ = numbers.Select(x => x * x);

        Console.WriteLine("使用for循環的結果:");
        foreach (int square in squares)
        {
            Console.WriteLine(square);
        }

        Console.WriteLine("\n使用LINQ的結果:");
        foreach (int square in resultWithLINQ)
        {
            Console.WriteLine(square);
        }
    }
}

這些示例展示了如何在C#中將for循環與LINQ結合使用,以便在遍歷集合時對其進行篩選、排序和投影等操作。

0
刚察县| 七台河市| 阳曲县| 方城县| 长子县| 精河县| 囊谦县| 溆浦县| 尚志市| 合肥市| 黄大仙区| 榆林市| 老河口市| 玉环县| 且末县| 黄冈市| 阜南县| 江陵县| 荔波县| 南涧| 二连浩特市| 通江县| 柏乡县| 如东县| 卢氏县| 西平县| 灵山县| 扶沟县| 郴州市| 常山县| 大洼县| 潞城市| 伊通| 砚山县| 韶山市| 从化市| 阜南县| 五寨县| 芦山县| 奉新县| 华亭县|