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

  • Home
  • SEARCH
  • 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 4006620
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T08:32:11+00:00 2026-05-20T08:32:11+00:00

I am using C# .net 3.5 to build an application. I have been working

  • 0

I am using C# .net 3.5 to build an application. I have been working with optional parameter attributes in .net 4.0 with no problems. I did notice that with 3.5 there is the option (workaround) to add the following attributes to your method like so:

    public static void MethodName(string name, [Optional][DefaultValue(null)]string placeHolder)
    {

    }

Even though I have added the attributes to the method, if I try and call it like so:

     MethodName("test");

The compiler will complain that it is looking for two parameters instead of one. Is it actually possible to do this using C# .net 3.5? Am I doing something wrong?

  • 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-05-20T08:32:12+00:00Added an answer on May 20, 2026 at 8:32 am

    Optional parameters are C# 4.0 language feature so it doesn’t matter which framework you are targeting, but you have to compile it using VS 2010 or newer.

    Use this syntax in VS 2010 or newer:

    public static void MethodName(string name, string placeHolder = null)
    {
        // body
    }
    

    Or this in older one:

    public static void MethodName(string name, string placeHolder)
    {
        // body
    }
    
    public static void MethodName(string name)
    {
        MethodName(name, null);
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I am trying to build an iPhone web application using ASP.NET. The page is
I have ASP.NET web pages for which I want to build automated tests (using
For the last 4 years I have been working as an ASP.NET developer in
I have been struggling to get a simple DynamicObject example working in .NET 3.5.
I've been working on a simple project that uses some common .NET classes, isolated
We are working on .NET Windows Application. We were using TFS from the beginning.
I am busy working with an ASP.NET MVC 3 application and using Windows 7.
The application is planned to be built using ASP.NET, .NET Remoting & MS SQL
We are investigating using CruiseControl.NET as both a Continues Integration build provider, as well
I am using C# 3.0 / .NET 3.5 and planning to build an eCommerce

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.