KeyHelper
using System;
using System.Runtime.CompilerServices;
namespace Polly.Utilities
{
    internal static class KeyHelper
    {
        private const int GuidPartLength = 8;
        [System.Runtime.CompilerServices.NullableContext(1)]
        public static string GuidPart()
        {
            return Guid.NewGuid().ToString().Substring(0, 8);
        }
    }
}