| c# Programming Glossary: valuebXml Comparison in C# http://stackoverflow.com/questions/794331/xml-comparison-in-c-sharp  descendantB.Name  var valueA descendantA.Value  var valueB descendantB.Value  var equalValues valueA.Equals valueB    .. 
 Use own IComparer<T> with Linq OrderBy http://stackoverflow.com/questions/985657/use-own-icomparert-with-linq-orderby  stringB  String valueA stringA.ToString .Split ' ' String valueB stringB.ToString .Split ' ' if valueA .Length 2 valueB .Length.. valueB stringB.ToString .Split ' ' if valueA .Length 2 valueB .Length 2 return String.Compare stringA.ToString stringB.ToString.. stringA.ToString stringB.ToString if valueA 0 valueB 0  return String.Compare valueA 1 valueB 1  else  return String.Compare.. 
 |