document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. void AddListSubItem(ListViewItem pLI, string text, Color textColor)
  2. {
  3.     ListViewItem.ListViewSubItem pSubItem = pLI.SubItems.Add(text);
  4.     pSubItem.ForeColor = textColor;
  5. }
');