Ihave created several classes and i wanted to know who to store the data enclosed in the classs. For Example
Code:
Public Class Session
       Public total_money As Integer
End Class


    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim Session1 As New Session
        Session1.total_money = 8
    End Sub
If i wanted to store that value past the close of the application, how would I? I already know I cant use the settings class. And what if i have multiple new classes. Help! Thanks