In my program I got an error that "Member 'TestUno.Form1.value' cannot be accessed with an instance reference; qualify it with a type name instead C:\Users\ADL65654\Documents\Visual Studio". I want to access static array from form1 to form3.
form3:
byte by1;
by = ((Form1)this.Owner).value[0]; //Error
form1:
public static byte[] value = new byte[10];
How can I solve this?