How would i make a default value for a byte array argument? The code below wont work...
public static void init(SomeByteArray[] = {1, 2, 3, 4}) {
//Do Something
}
Is this possible?
Im doing this in .Net Micro Framework 4.1, if it makes any difference...