I have a memory lapsus:
I have this declaration:
then within a loop I need to increment it
In java it is:
and in VB.Net it would be (I think):
ch is an int
Can someone help me to show in B4X how to write:
Thanks.
I have this declaration:
B4X:
Dim totalSamplesPerChannel() As Int = Array As Int(channelcount)
then within a loop I need to increment it
In java it is:
B4X:
totalSamplesPerChannel[ch]++;
B4X:
totalSamplesPerChannel(ch) += 1
ch is an int
Can someone help me to show in B4X how to write:
B4X:
totalSamplesPerChannel[ch]++;
Thanks.