Enumerable « Data Structure « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Data Structure » EnumerableScreenshots 
1.Enumerable.All tells whether all elements of a sequence satisfy a condition.
2.Enumerable.Any Determines whether a sequence contains any elements.
3.Enumerable.Concat(TSource) concatenates two sequences.
4.Enumerable.Contains tells whether a sequence contains a specified element
5.Enumerable.Distinct returns distinct elements from a sequence by using the default equality comparer to compare values.
6.Enumerable.Except produces the set difference of two sequences by using the default equality comparer to compare values.
7.Enumerable.Except produces the set difference of two sequences by using IEqualityComparer(Of T)
8.Enumerable.GroupBy groups the elements of a sequence according to a specified key selector function and projects the elements for each group by using a specified function.
9.Enumerable.Intersect produces the set intersection of two sequences
10.Enumerable.SequenceEqual Determines whether two sequences are equal by comparing the elements
11.Enumerable.SequenceEqual determines whether two sequences are equal by comparing their elements by using a specified IEqualityComparer(Of T).
12.Enumerable.Union returns set union of two sequences by using the default equality comparer.
13.Enumerable.Union produces the set union of two sequences by using a specified IEqualityComparer(Of T).
ww_w._j___a__va__2_s_._c__o_m___ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.