Imports System.Collections.Generic
Dim _data = New List(Of Object)
Dim data1 = New With {.IDMO = 5162, .Id = 1}
Dim data2 = New With {.IDMO = 4567, .Id = 2}
Dim firstObject = _data.FirstOrDefault()
Dim type As Type = firstObject.GetType()
Dim idmoValue = type.GetProperty("IDMO").GetValue(firstObject)
Console.WriteLine(idmoValue)