Created
August 27, 2015 05:35
-
-
Save KMR-zoar/cf74b9bf28480bc4f5cf to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Module Module1 | |
Sub Main() | |
Console.Write(keys.ConKey + keys.ConSec + keys.AcToken + keys.AcSec) | |
End Sub | |
Private Function keys() As keyset | |
keys.ConKey = "A" | |
keys.ConSec = "B" | |
keys.AcToken = "C" | |
keys.AcSec = "D" | |
End Function | |
Private Structure keyset | |
Dim ConKey As String 'ConsumerKey | |
Dim ConSec As String 'ConsumerSecret | |
Dim AcToken As String 'AccessToken | |
Dim AcSec As String 'AccessTokenSecret | |
End Structure | |
End Module |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment