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 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

I am writing an application which tests email addresses, for one part of this
Helo I use this code: cur = $('input:radio'); cur.wrap('<span class=customRadio></span>'); what i must to
Helo, I've this RegEx to delete double letter on a string : <? $string
Helo, I am pretty new to Ruby (using 1.8.6) and need to know whether
Helo. I am building an application for kids using Phonegap. On Android I have
I am trying to use gmail's SMTP server smtp.gmail.com to send mails using C
Helo, i have the following code which should filter entities. Half of the code
I have a C# project with many classes. Is it possible to pack this
Helo, My question is I have one Stored Procedure in SQL Server that returns
Helo there. I have a Movies folder with subfolders inside. In those subfolders (which

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.