I am trying to read the data to a string from postcodes.io using the MarkEmbling library, I can't seem to output the data to a readable string.
https://i.stack.imgur.com/ho57l.jpg
I want to output the data to a textbox which shows the town, county and region but it just shows the data as the image above. (I'm using the textbox for testing) also this is my first program.
This is just a simple front end desktop application for postcodes.io using the MarkEmbling library.
var data = textBox1.Text;
string myData = data.ToString();
var client = new PostcodesIOClient();
var result = client.Lookup(myData);
string myResult = result.ToString();
MessageBox.Show(myResult);