如何將A陣列與B陣列相加到C陣列(都是一維陣列)(編號:6916)

dim A() AS byte, B() AS byte, C() as byte
C = A + B
如何做到以上功能, 一定要用迴圈做?還有其他方法?