Click or drag to resize
DataExtensions.ToDictionaryById Method (IEnumerable<BaseInfo>)
Converts the list of objects to a dictionary indexed by object ID

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
public static SafeDictionary<int, BaseInfo> ToDictionaryById(
	this IEnumerable<BaseInfo> objects
)

Parameters

objects
Type: System.Collections.Generic.IEnumerable<BaseInfo>
List of objects to convert

Return Value

Type: SafeDictionary<Int32, BaseInfo>

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type IEnumerable<BaseInfo>. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also