Okay I think I have a better way to go about it but I need help with doing a string builder.
The way I'm going to do this, is a new string will be created and the approver that is signed in will not be included.
So this is what I've got:
Code:
string[] BOGApprovers = lblBOGApprovers.Text.Split(newchar[] { '&' });
StringBuilder builder = newStringBuilder();
foreach (string BOG in BOGApprovers)
{
//get signed in BOG, if not signed in, add to string
if (BOG != emp)
{
builder.Append( ?????? )
}
}
Now my question is how do I append the string to look like "101&103" ??