Goodmorning guys.
I'm coming from python environment and turning to c# scripting.
Is there a way in c# to simply collect multiple elements from a list as shown?
List = []
List.append(a,b,c,d,e,f,g,h,i)
items = List[2:6]
to get
c
d
e
f
g
Anyone got simple solutions?