I took a break from one of the apps I was working on and starting working on a personal app and am wanting to know how I could port this VB.NET Structure to B4J:
Thanks.
B4X:
'Credit goes to Chadderz for this compressor included in CTools.
'http://wiki.tockdom.com/wiki/User:Chadderz
Private Structure Contraction
Public Location As Integer
Public Size As Integer
Public Offset As Integer
Public Sub New(loc As Integer, sz As Integer, off As Integer)
Location = loc
Size = sz
Offset = off
End Sub
End Structure
Thanks.