For SO, I think asking questions the smart way includes describing the problem as clearly as possible with the least amount of waste (keep it short and to the point).
Format your text into paragraphs so it isn't a big chunk of text and use bold and italics to highlight words and phrases that are important to the context. Think of it as pre-highlighting the question. I like to bold key issues in my problem (how do I capture the space key with the TextCompositionManager since I don't want to use the InputManager for this).
Keep your code simple, clear and well formatted. This sucks:
public static void Foo(GeneralizationManager _fmainP, TargetLinkDesignator _bLol){
using(new TransactionalGeneralizationManagerTorquer(new ContextualBrachinatrix(), Repository.GetLatestTransactionalContext())){
foreach(InterstitialLink il in _bLol.Interstitials.Where(x => x.IsInternationalized))
//imagine this going on for thirty or more lines
}
}
So reformat your code to emphasize your issue:
public static void Foo()
{
using(new TransactionScope())
{
// how do I participate in this transaction?
}
}
Re-read your question after submitting and change anything you think might be confusing or that doesn't make sense.
And, when someone asks for additional information, don't hesitate to edit your question. Adding additional information in the question will bump it and make it likely that more people will read the question.