Download BbmPaletteLoader.zip version 1.0.0.0, last updated 11/01/2014 (340.61 KB)

Download
  • md5: 277a85ced16921e1e3ae9967aba61e71
using System.IO;

// Loading the color palette from a BBM/LBM image file using C
// http://cyotek.com/blog/loading-the-color-palette-from-a-bbm-lbm-image-file-using-csharp

namespace BbmPaletteLoader
{
  internal class FileInfo
  {
    #region Public Constructors

    public FileInfo(string fullPath)
    {
      this.FullPath = fullPath;
    }

    #endregion

    #region Overridden Methods

    /// <summary>
    /// Returns a string that represents the current object.
    /// </summary>
    /// <returns>
    /// A string that represents the current object.
    /// </returns>
    public override string ToString()
    {
      return Path.GetFileName(this.FullPath) ?? base.ToString();
    }

    #endregion

    #region Public Properties

    public string FullPath { get; set; }

    #endregion
  }
}

Donate

Donate