using System.Collections.Generic;
private static HashSet<string> uhfServiceStatics;
public static HashSet<string> UhfServiceBundleJs()
if (uhfServiceStatics == null)
uhfServiceStatics = new HashSet<string>(new[]
return uhfServiceStatics;
private static HashSet<string> uhfComponentStatics;
public static HashSet<string> UhfComponentBundleJs()
if (uhfComponentStatics == null)
var uhfComponentStaticsTemp = UhfServiceBundleJs();
uhfComponentStaticsTemp.UnionWith(new[]
uhfComponentStatics = uhfComponentStaticsTemp;
return uhfComponentStatics;
public static void Main()
var serviceBundle = UhfServiceBundleJs();
foreach(var item in serviceBundle)