IListToList

Convert IList<T> to List<T>.

Conversion conditions

Conditions are judged in order from the top.
It doesn't matter what type the element's type T is.

Input type Output type Possibility
IList<T> List<T> Possible

Other than the above is not possible

Supplement

If the input data instance is List<T>, the instance is output as is.