protected override void SaveAs(Stream stream, String extension) { if (!IsExtension(extension, "CUR")) { throw new ArgumentException("cur is the only supported extension"); } IconGroup.Save(stream); }
private void IconSave() { _icon.Save(_file.FullName); }