Skip to content

Commit

Permalink
feat: added separators constants
Browse files Browse the repository at this point in the history
  • Loading branch information
aochmann committed Feb 15, 2021
1 parent 212309b commit 4a648ad
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Source/Cogworks.Essentials/Constants/StringConstants/Separators.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
namespace Cogworks.Essentials.Constants.StringConstants
{
public static class Separators
{
public const string Comma = ",";
public const string Space = " ";
public const string Underscore = "_";
public const string CommaAndSpace = Comma + Space;
public const string Slash = "/";
public const string Backslash = @"\";
public const string Dot = ".";
public const string Semicolon = ";";
public const string Assign = ":=";
public const string Vertical = "|";
public const string Hyphen = "-";
}
}

0 comments on commit 4a648ad

Please sign in to comment.