You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
595 B

namespace com.adjust.sdk
{
public enum AdjustEnvironment
{
Sandbox,
Production
}
public static class AdjustEnvironmentExtension
{
public static string ToLowercaseString(this AdjustEnvironment adjustEnvironment)
{
switch (adjustEnvironment)
{
case AdjustEnvironment.Sandbox:
return "sandbox";
case AdjustEnvironment.Production:
return "production";
default:
return "unknown";
}
}
}
}