Here's a handy method for creating a list of an anonymous type from a single anonymous type.
Public Function CreateListFromSingle(Of T)(ByVal p1 As T) As List(Of T)
Dim list As New List(Of T)
list.Add(p1)
return List
End Function
Now you can just do the following
Dim list = CreateListFromSingle(dsResource)
EDIT OP wanted a way to create the list before creating an element.
There are 2 ways to do this. You can use the following code to create an empty list. It borders on hacky because you are passing parameters you don't ever intend to use but it works.
Public Function CreateEmptyList(Of T)(ByVal unused As T) As List(Of T)
Return New List(Of T)()
End Function
Dim x = CreateEmptyList(New With { .Name = String.Empty, .ID = 42 })
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…