internal static CfLabel[] FromLabel(Label[] source)
 {
     return source == null ? null : source.Select(FromLabel).ToArray();
 }
 internal static CfLabel FromLabel(Label source)
 {
     return source == null ? null : new CfLabel(source.Name);
 }