[This is preliminary documentation and is subject to change.]

Returns input as an IEnumerable.

Namespace:  Facebook
Assembly:  Facebook (in Facebook.dll) Version: 0.2009.4.13 (0.2009.4.13)

Syntax

C#
public static bool TryMakeEnumerable(
	this Object input,
	out IEnumerable col
)
Visual Basic (Declaration)
<ExtensionAttribute> _
Public Shared Function TryMakeEnumerable ( _
	input As Object, _
	<OutAttribute> ByRef col As IEnumerable _
) As Boolean
Visual C++
[ExtensionAttribute]
public:
static bool TryMakeEnumerable(
	Object^ input, 
	[OutAttribute] IEnumerable^% col
)

Parameters

input
Type: System..::.Object
An Object whose type implements IEnumerable.
col
Type: System.Collections..::.IEnumerable %
When this method returns, input cast as an IEnumerable.

Return Value

true if Object was able to be cast as an IEnumerable; otherwise, false.

See Also

EnumerableExtensions Class
Facebook Namespace