internal static string ToSerializedValue(this SandboxTypeEnum value) { switch (value) { case SandboxTypeEnum.None: return("None"); case SandboxTypeEnum.Csp: return("Csp"); } return(null); }
public static string ToSerialString(this SandboxTypeEnum value) => value switch {