This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/// <summary> | |
/// Separates the given compound string assuming that string components are separated | |
/// with the given separator character. | |
/// It is assumed that any usage of the separator character inside the compound string | |
/// is escaped with a backslash character, and any usage of the backslash character | |
/// is escaped with double backslash characters. | |
/// </summary> | |
/// <param name="compound">The compound string</param> | |
/// <param name="separator">The separator character</param> | |
/// <returns><c>List</c> of strings that built the original compound string</returns> |
NewerOlder