using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace Porta.Kundenzähler.Extension { public static class GuidExtension { /// /// Converts the GUID to a short version /// /// The GUID object. /// The first part until the first hyphen of the regular GUID. public static string ToShortString(this Guid guid) { return guid.ToString().Split('-')[0]; } } }