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 971029
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T02:53:51+00:00 2026-05-16T02:53:51+00:00

I understand how to get the names of parameters passed to a method, but

  • 0

I understand how to get the names of parameters passed to a method, but let’s say I have a method declaration as follows:

static void ParamsTest(string template, params object[] objects)

and I want to use object/property names in my template for substitution with real property values in any of the objects in my `objects’ parameter. Let’s then say I call this method with:

ParamsTest("Congrats", customer, purchase);

I will only be able to retrieve two parameter names trying to fill out the template, viz, template, and objects, and the names of the objects in the objects collection are forever lost, or not?

I could require a List<object> as my second parameter, but I feel there is somehow a more elegant solution, maybe with a lambda or something. I don’t know, I’m not used to using lambdas outside of LINQ.

  • 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-16T02:53:51+00:00Added an answer on May 16, 2026 at 2:53 am

    Inpsired by Mark I can offer an anonymous type answer :

    using System;
    
    namespace ConsoleApplication5
    {
        class Program
        {
            static void Main(string[] args)
            {
                ParamsTest(new { A = "a", B = "b"});
            }
    
            public static void ParamsTest(object o)
            {
                if (o == null)
                {
                    throw new ArgumentNullException();
                }
                var t = o.GetType();
                var aValue = t.GetProperty("A").GetValue(o, null);
                var bValue = t.GetProperty("B").GetValue(o, null);
            }
        }
    }
    

    However this DOES have drawbacks :

    • No type safety. I can pass in any object
    • I can pass in an anonymous type with different members and/or types than those expected
    • You should also do more checking than in this short sample
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get that asterix is for pointers, and I understand about pointers now. But
I understand PCRE pretty well, but MySQL's regular expression flavor seems to get the
Let's say I have a Students table on my main page, with Country, Name,
I am new to php and need to understand how post get method could
I'm trying to understand how to get librsync to work (ie. make signature/make delta/patch)
My main problem is I don't understand how to get the position of the
i understand that some files get published to this folder in my application. i
I cant understand what this warning I get on Xcode is about. Searching for
I'm trying to understand why my code get stuck in the for loop of
I understand that pthread_cond_wait() is documented to get spurious wake ups and the caller

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.