Python offers the following syntax to initialize a python List functionally:
mylist = [item for item in iterable]
Is there a similar syntax in C# for initializing a C# List?
EDIT:
I guess I should be more specific. I'm trying to emulate the following syntax:
mylist = [operation(item) for item in iterable]