Below is a piece of code in which I am trying to concatenate two items into
an arraylist. I have separated them with a " " but when I increase this to
say " " only one space is allowed. I assume the arraylist class is
removing the extra spaces which I would like to have for clarity. Is there a
method or property to do this.
arr.Add(objcust .ChildNodes(t). ChildNodes.Item (0).InnerText & " " & _
objcust.ChildNo des(t).Attribut es.Item(0).Valu e)
thanks
an arraylist. I have separated them with a " " but when I increase this to
say " " only one space is allowed. I assume the arraylist class is
removing the extra spaces which I would like to have for clarity. Is there a
method or property to do this.
arr.Add(objcust .ChildNodes(t). ChildNodes.Item (0).InnerText & " " & _
objcust.ChildNo des(t).Attribut es.Item(0).Valu e)
thanks
Comment