myBo.Item("MyField") Or MyBo("MyField")
You can also access the data table within the BO and access the rows:
MyBO.CurrentDataTable.Rows(0).Item("MyField")
Ben's post is a more "pure" approach - but both options will work depending upon your circumstances.