G
Guest
I have the follow srtuct
public struct tDEVFOUND
{
public char[] bda;
public char[] dev_class;
public char[] name;
public int connected;
};
and i want to be able to the members, but i wanted to make a pointer..ie
tDEVFOUND *a;
but i get a compile error...is there anyway to do this??
public struct tDEVFOUND
{
public char[] bda;
public char[] dev_class;
public char[] name;
public int connected;
};
and i want to be able to the members, but i wanted to make a pointer..ie
tDEVFOUND *a;
but i get a compile error...is there anyway to do this??