I have a C programming background and I am used to doing ugly things.
Is there a more elegant/readable way to do this scaling operation in C#:
ImageProcessing.Resize(original, 80, (int)((float)original.Height * (80f / original.Width)));
Where "original" is the .Net Image class and Image.Width and Image.Height are thus integers.