When making comments when describing the program's flow, do you say "we" or "the program" or something else?
I realised that putting "we" in my comments is a bit silly considering I'm the only person who'se going to look at the source.
Example (from some disabled code of mine)
/// <summary>Creates a tab image suitable for displaying on top of a glass-pipe</summary>
/// <param name="tabColor">The base color of the tab's front</param>
private static Bitmap MakeGlassPipeTab(Color tabColor) {
#region GDI+ GraphicsPath method (fails miserably)
// It has come to my attention that GDI+ paths *suck!*...
// therefore we do some hitech shizzle with bitmap locking and BINARY MATH 'n' Logic! woo!
const Int32 width = 190 + 15;
Bitmap bmp = new Bitmap(width, _height);
Graphics g = Graphics.FromImage(bmp);
// define a graphics path, we fill the path's body, then stroke it with a pen
GraphicsPath path = new GraphicsPath();
path.AddLine( new Point(10,50), new Point(10,30) );
Thread Closed
This thread is kinda stale and has been closed but if you'd like to continue the conversation, please create a new thread in our Forums,
or Contact Us and let us know.