0

I have an array of structure like this:

Structure Planner
        Dim Type As String        
        Dim Circuit As String
        Dim Socket As String
        Dim StepCMDText As String
    End Structure

how do i write it into a file? (also read it later ...)

thanks

2 Answers 2

2

You could use xml serialization that is available in VB.NET. See http://support.microsoft.com/kb/316730 for details.

Sign up to request clarification or add additional context in comments.

Comments

0

You could write it as a csv file but simply iterating over a list and then separating each value by a comma otherwise you could serialise it and write that to a file.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.