public static void FeatureUsed(uint featureId)
        {
            UsageReporterWithoutUI reporter = new UsageReporterWithoutUI();

            reporter.RecordFeatureUsed(featureId);
        }
        public static void DynamicFeatureUsed(string featureName)
        {
            UsageReporterWithoutUI reporter = new UsageReporterWithoutUI();

            reporter.RecordFeatureUsed(featureName);
        }