Database Reference
In-Depth Information
string UserLabel = globals.UserLabel;
int UserLabelID = globals.UserLabelID;
if (belief)
{
Label = Label.Insert(UserLabelID - 1,
globals.UserLabel);
}
else
{
Label = Label.Insert(UserLabelID
- 1,”-”+ globals.UserLabel);
}
return GetBCLabelNumeric(Label);
}
public static ArrayList GetAttribute(string Str)
{
//ArrayList ReturnARR = new ArrayList();
ArrayList ARR = new ArrayList();
string Attribute = “”;
string Values = “”;
if (Str.Contains(','))
{
ARR.AddRange(Str.Trim().Split(','));
}
else
ARR.Add(Str.Trim());
return ARR;
}
public static ArrayList GetInsertValue
(string Str)
{
ArrayList ARR = new ArrayList();
Str = Str.Remove(Str.IndexOf('('), 1);
Str = Str.Remove(Str.IndexOf(')'), 1);
if (Str.Contains(','))
{
ARR.AddRange(Str.Trim().Split(','));
}
return ARR;
}
}
}
Search WWH ::




Custom Search