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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T20:14:05+00:00 2026-06-04T20:14:05+00:00

Our code allows a user to set a parameter and its value. A value

  • 0

Our code allows a user to set a parameter and its value.
A value may be a reference to another parameter.

Parameter.Set("Parameter1", "%Parameter2%");
Parameter.Set("Parameter2", "%Parameter1%");

The actual resolving of this value uses Regex class’s Replace method to resolve any references inside % symbols recursively, and replace them:

// Pseudo code (the actual parameter name is retrieved and replaced with its value.
Regex.Replace("%Parameter1%", match => Parameter.Get(match));

In this case, a cyclic reference will cause a StackOverflowException.

How can this be avoided? (In case a cyclic reference is detected – throw an exception/handle in some way)

A proposed implementation was to keep a list of terms that were already looked for in the current resolving execution (a “Search History”).

For each step, look if the current searched parameter is in the history, if it is — we’ve looked at it already, and we must be in a cycle.

The downside to this approach is that it’s wasteful (allocate a new List for each parameter resolving that occurs).

  • 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-04T20:14:08+00:00Added an answer on June 4, 2026 at 8:14 pm

    As I suggested above, rewrite the signature of the recursive method as Parameter.Get(string, int). Use the int as a recursion depth counter. Each time the method needs to evaluate a deeper parameter, decrement the int variable. When it reaches 0, stop processing parameters. The initial value of int can be a pretty small number, since few people will use 20 recursive parameters.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

We currently have some php code that allows an end user to update records
Our code-signing certificate expired recently, so I renewed it and just published our first
In our code we have quite a few cases of this pattern: class outerClass
For our code review process we open the details of a shelveset to see
In our code base there is a function which should return either an object
In our code I have the following, for now please ignore the //* bits;
Currently our code uses a for-loop for filling a buffer holding a Unicode string
I am currently porting our code from an alpha (Tru64) to an i386 processor
We've been profiling our code recently and we've come across a few annoying hotspots.
I just saw some code in our code base (and it's OLD code, as

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.