Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 8808001
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 14, 20262026-06-14T02:30:35+00:00 2026-06-14T02:30:35+00:00

Is there a guide where I can read up on the rules of breaking

  • 0

Is there a guide where I can read up on the rules of breaking lines to keep within columns?

I have the following code and my margin is set to 80 characters (so that it fits into an A4 page when I print):

IDictionary<string, object> columns = new Dictionary<string, object>(1);

The parantheses fall just at the 80th column. So, should I break it up like this:

IDictionary<string, object> columns = new Dictionary<string, object>
    (1);

or this:

IDictionary<string, object> columns = new Dictionary
    <string, object>(1);

or this:

IDictionary<string, object> columns =
    new Dictionary<string, object>(1);

or any other way? I prefer not to increase the margin.

Thanks.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-06-14T02:30:36+00:00Added an answer on June 14, 2026 at 2:30 am

    80 characters in line is not a law – it’s nice to have. And best option here is:

    var columns = new Dictionary<string, object>(1);
    

    Never break type name, generic parameters, and opening bracket (it’s OK to continue on next line if you have many parameters). So, options also (the best one – forget about 80 characters and put all into one line):

    IDictionary<string, object> columns = new Dictionary<string, object>(1);
    

    and (if line is really long)

    IDictionary<string, object> columns = 
            new Dictionary<string, object>(1);
    

    or split assignment and declaration

    IDictionary<string, object> columns;
    columns = new Dictionary<string, object>(1);
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've read the YQL guide, and I keep reviewing http://developer.yahoo.com/yql/guide/yql-o...entables-paging and I have been
does netbeans include phpdocumentator so you can comment your code? is there some guide
I have read http://developer.android.com/guide/practices/screens_support.html and http://developer.android.com/reference/android/util/DisplayMetrics.html and I somehow left with a gap here.
Can someone guide me to find the best storage format in term of read/write
Is there any way I can read settings for iPhone preferences. I wanted to
Is there any way I can read settings for iPhone preferences. I wanted to
I have read the Core Animation Cook Book and Core Animation Programming Guide from
I read here and there about touch but I can't get to it completely.
In sql-server there is function to auto-increment guid fields. CREATEGUID() how can I do
Is there a guide/reference anyone would recommend to pick up C++ specifically if you

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.