by Oliver
9. August 2014 12:52
Today, I found this dusty piece of code in our code base: Stone-age version public string GetIframeIds() { var result = new StringBuilder(); var first = true; foreach (var iframe in _iframes) { if (!first) result.Append(','); else first = false; r...
[More]
by Oliver
28. June 2011 01:27
Three year old code: 1: protected string CpeBehaviorIds()
2: {
3: var cpeIds = "";
4:
5: var helpItems = GetHelpItems(divGlobal);
6:
7: foreach (var helpItem in helpItems)
...
[More]