From the book "professional
vb.net 2003" I am creating the code as per the instructions but get an error message:
"Object reference not set to an instance of an object"
The problem is highlighted where it is asterixed in the code below:
prescriptions = serialize.Deserialize(dehydrated)
Dim prescription As WXClientPrescription
For Each prescription In prescriptions.prescriptions
Console.Out.WriteLine("{0},{1},{2}", _
prescription.dentistName, _
prescription.medicationID, _
prescription.quantity)
Next**
It is taken from chapter 10 p307.