# region Heading /**************************************************************************************************************/ /* */ /* SortMode.cs */ /* */ /* An enumeration for specifying if and when to sort something */ /* */ /* This is free code, use it as you require. It was a good learning exercise for me and I hope it will be */ /* for you too. If you modify it please use your own namespace. */ /* */ /* If you like it or have suggestions for improvements please let me know at: PIEBALDconsult@aol.com */ /* */ /* Modification history: */ /* 2005-11-14 Sir John E. Boucher Created */ /* */ /**************************************************************************************************************/ # endregion namespace BrazilTimestampReconstruction { /** What type of sorting to perform */ public enum SortMode { /** No sorting */ None , /** Perform the sort before performing the ToString()s */ Native , /** Perform the sort after performing the ToString()s */ String } }