Simple C# library for retrieving Amplitude feature flags
var amplitude = new AmplitudeFeature("Your_API_key");
var enabled = amplitude.FeatureIsEnabled("the_flag_name");
The Amplitude Feature Library solution contains the following 3 projects:
A small class library project for interacting with Amplitude feature flags
Unit tests for the Amplitude feature library project
A small console project that allows you to see the library code in action