H
Herve MAILLARD
Hi,
Hi have the following array
public struct Type_Var
{
public int ID;
public string Mnemonique;
public DateTime Date;
public float Valeur;
public bool Archived;
public short Invalid;
}
public Type_Var[] Var_Data;
I need to use Var_Data.indexof("ABCDE");
I want to search only in the Mnemonique field.
How can I do that ?
thanks for your help.
H. MAILLARD
Hi have the following array
public struct Type_Var
{
public int ID;
public string Mnemonique;
public DateTime Date;
public float Valeur;
public bool Archived;
public short Invalid;
}
public Type_Var[] Var_Data;
I need to use Var_Data.indexof("ABCDE");
I want to search only in the Mnemonique field.
How can I do that ?
thanks for your help.
H. MAILLARD