TileIconifier.Core.Shortcut.ShortcutItemImage.Save C# (CSharp) Method

Save() public method

public Save ( string filePath ) : void
filePath string
return void
        public void Save(string filePath)
        {
            var x = new XmlSerializer(typeof (ShortcutItemImage));
            using (var fs = new FileStream(filePath, FileMode.Create))
            {
                x.Serialize(fs, this);
            }
        }