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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 10, 20262026-05-10T23:19:41+00:00 2026-05-10T23:19:41+00:00

Helo! Is this possible to use string value of one node which tells what

  • 0

Helo!

Is this possible to use string value of one node which tells what type of field is presented in another node using LINQ to XML?

For example:

<node>   <name>nodeName</name>   <type>string</type> </node> <node>   <name>0</name>   <type>bool</type> </node> <node>   <name>42</name>   <type>int</type> </node> 

Thanks in advance

  • 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. 2026-05-10T23:19:42+00:00Added an answer on May 10, 2026 at 11:19 pm

    Well, you won’t get a nice statically typed API given that the type information is only known at execution time – but you could easily write an extension method on XElement which looks for the appropriate subelements and returns System.Object. For instance (untested):

    public static object ParseValue(this XElement element) {     XElement name = element.Element('name');     XElement type = element.Element('type');     // Insert error handling here :)      switch (type.Value)     {         case 'int':             return int.Parse(name.Value);         case 'string':             return name.Value;         case 'bool':             return name.Value == '1'; // Or whatever         default:             throw new ArgumentException('Unknown element type ' + type.Value);     } } 

    It’s not how I’d design a data format, but if it’s being thrust upon you…

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

Sidebar

Related Questions

Using the PHP mail() function is it possible to set a fully-qualified hostname for
Helo! I create in my project a folder named 'Templates'. In this folder I
Helo, My question is I have one Stored Procedure in SQL Server that returns
Helo, i have the following code which should filter entities. Half of the code
this may not be an earth-shattering deficiency of python, but i still wonder about
Helo Can anybody explain me how to get configuration element from .config file. I
Take this domain: http://www.?.co.uk/elderly-care-advocacy/mental-capacity-act-advance-medical-directive.html How could i use PHP to find the everything between
I have a .NET service that processes a queue on a background thread and
I have a SMTP server that only accepts a predefined From sender. However, I

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.