/// <summary>
 ///     Function that returns a profile from the inner Conversionprofiles(list) by a given name.
 /// </summary>
 /// <param name="name">Profilename</param>
 /// <returns>(First) Conversionprofile with the given name. Returns null, if no profile with given name exists.</returns>
 public ConversionProfile GetProfileByName(string name)
 {
     return(SettingsHelper.GetProfileByName(ConversionProfiles, name));
 }
 /// <summary>
 ///     Function that returns a profile from the inner Conversionprofiles(list) by a given guid.
 /// </summary>
 /// <param name="guid">Guid to look for</param>
 /// <returns>(First) Conversionprofile with the given guid. Returns null, if no profile with given guid exists.</returns>
 public ConversionProfile GetProfileByGuid(string guid)
 {
     return(SettingsHelper.GetProfileByGuid(ConversionProfiles, guid));
 }