public static void DynamicFeatureUsed(string featureName)
        {
            UsageReporterWithUI reporter = new UsageReporterWithUI();

            reporter.RecordFeatureUsed(featureName);
        }
        public static void FeatureUsed(uint featureId)
        {
            UsageReporterWithUI reporter = new UsageReporterWithUI();

            reporter.RecordFeatureUsed(featureId);
        }