Enumerable.Append<TSource>(IEnumerable<TSource>, TSource) 方法

定義

將值附加在序列結尾。

C#
public static System.Collections.Generic.IEnumerable<TSource> Append<TSource> (this System.Collections.Generic.IEnumerable<TSource> source, TSource element);

類型參數

TSource

source 項目的類型。

參數

source
IEnumerable<TSource>

一連串的值。

element
TSource

要附加在 source 後面的值。

傳回

IEnumerable<TSource>

element 結尾的新序列。

例外狀況

sourcenull

範例

下列程式代碼範例示範如何使用 Append 將值附加至序列結尾。

C#
// Creating a list of numbers
List<int> numbers = new List<int> { 1, 2, 3, 4 };

// Trying to append any value of the same type
numbers.Append(5);

// It doesn't work because the original list has not been changed
Console.WriteLine(string.Join(", ", numbers));

// It works now because we are using a changed copy of the original list
Console.WriteLine(string.Join(", ", numbers.Append(5)));

// If you prefer, you can create a new list explicitly
List<int> newNumbers = numbers.Append(5).ToList();

// And then write to the console output
Console.WriteLine(string.Join(", ", newNumbers));

// This code produces the following output:
//
// 1, 2, 3, 4
// 1, 2, 3, 4, 5
// 1, 2, 3, 4, 5

備註

備註

這個方法不會修改集合的專案。 相反地,它會使用新元素建立集合的複本。

適用於

產品 版本
.NET Core 1.0, Core 1.1, Core 2.0, Core 2.1, Core 2.2, Core 3.0, Core 3.1, 5, 6, 7, 8, 9
.NET Framework 4.7.1, 4.7.2, 4.8, 4.8.1
.NET Standard 1.6, 2.0, 2.1