If you truly want "en-US" culture then you should create an en-US culture and use that to format the date time.
var provider = new CultureInfo ("en-US", false);
var date = new DateTime (2011, 6, 27, 17, 7, 0);
date.ToString ("d", provider);
or
var provider = new CultureInfo ("en-US", false);
var date = new DateTime (2011, 6, 27, 17, 7, 0);
date.ToString ("MM/dd/yy", provider);
This is different to formatting a string as "MM/dd/yy" in the current culture.
If you use the current culture (en-CA) then month names, day names and the date/time separators will still use Canadian formatting.
Whilst specifying your culture explicitly (en-US) will use the correct spellings, and abbreviations for that culture.
Admittedly you won't notice a huge different with this particular format between these 2 cultures, but if you were using a long date format such as "ddd, dd MMM yyyy" and your current culture was "fr-CA" you would get a much more noticeable difference.