i having problem in converting this C# code into VB.net. The loadLecturer seem to be having problem after convert to VB.NET
VB code just afterInitializeComponent()
context.Load(context.GetLecturesQuery(), LoadLecturer, Nothing)
The C# code i wish to convert and debug
private void LoadLecturer(LoadOperation<tblLecturer> obj)
{
foreach (var item in obj.Entities)
{
cbLID.Items.Add(item.lecturerID + " - " + item.lfirstName + " " + item.llastName);
}
}