Class UuidNameCompare
static helper class for comparing a string to another name + "Uuid" string without building a new string.
Inheritance
System.Object
UuidNameCompare
Inherited Members
System.Object.ToString()
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: TimeCockpit.Data
Assembly: TimeCockpit.Data.dll
Syntax
public static class UuidNameCompare
Methods
EqualsNamePlusUuid(String, String)
Compares the leftHand string to the name while appending "Uuid" without constructing a new string.
Declaration
public static bool EqualsNamePlusUuid(string leftHand, string name)
Parameters
Type | Name | Description |
---|---|---|
System.String | leftHand | the string to compare. |
System.String | name | the name to compare to with "Uuid" appended. |
Returns
Type | Description |
---|---|
System.Boolean | Returns true if the leftHand matches (name + "Uuid") |