Table of Contents

Class CAThread

Namespace
SunamoThread
Assembly
SunamoThread.dll

Provides thread-safe collection conversion utilities.

public class CAThread
Inheritance
CAThread
Inherited Members
Extension Methods

Methods

ToList(IList)

Converts an IList to a List<T> of objects.

public static List<object> ToList(IList list)

Parameters

list IList

The source list to convert.

Returns

List<object>

A new list containing all elements as objects.

ToListString(IList)

Converts an IList to a List<T> of strings by calling ToString on each element.

public static List<string> ToListString(IList list)

Parameters

list IList

The source list to convert.

Returns

List<string>

A new list of string representations of each element.