共用方式為


操作說明:尋找兩個清單之間的集合差異 (LINQ) (Visual Basic)

此範例示範如何使用 LINQ 比較兩份字串清單,然後輸出在 names1.txt 但不在 names2.txt 中的字串行。

建立資料檔

  1. 將 names1.txt 與 names2.txt 複製到您的解決方案資料夾,如操作說明:合併及比較字串集合 (LINQ) (Visual Basic) 中所示。

範例

Class CompareLists  
  
    Shared Sub Main()  
  
        ' Create the IEnumerable data sources.  
        Dim names1 As String() = System.IO.File.ReadAllLines("../../../names1.txt")  
        Dim names2 As String() = System.IO.File.ReadAllLines("../../../names2.txt")  
  
        ' Create the query. Note that method syntax must be used here.  
        Dim differenceQuery = names1.Except(names2)  
        Console.WriteLine("The following lines are in names1.txt but not names2.txt")  
  
        ' Execute the query.  
        For Each name As String In differenceQuery  
            Console.WriteLine(name)  
        Next  
  
        ' Keep console window open in debug mode.  
        Console.WriteLine("Press any key to exit.")  
        Console.ReadKey()  
    End Sub  
End Class  
' Output:  
' The following lines are in names1.txt but not names2.txt  
' Potra, Cristina  
' Noriega, Fabricio  
' Aw, Kam Foo  
' Toyoshima, Tim  
' Guy, Wey Yuan  
' Garcia, Debra  

Visual Basic 中某些查詢作業類型 (如 ExceptDistinctUnionConcat,只能使用以方法為基礎的語法來表示。

編譯程式碼

使用 System.Linq 命名空間的 Imports 陳述式建立 Visual Basic 主控台應用程式專案。

另請參閱