Click here to Skip to main content
15,906,106 members
Home / Discussions / C#
   

C#

 
GeneralRe: converting string to date Pin
Colin Angus Mackay13-Apr-09 2:12
Colin Angus Mackay13-Apr-09 2:12 
GeneralRe: converting string to date Pin
sachees12313-Apr-09 2:36
sachees12313-Apr-09 2:36 
GeneralRe: converting string to date Pin
Colin Angus Mackay13-Apr-09 2:44
Colin Angus Mackay13-Apr-09 2:44 
GeneralRe: converting string to date Pin
sachees12313-Apr-09 2:53
sachees12313-Apr-09 2:53 
GeneralRe: converting string to date Pin
PIEBALDconsult13-Apr-09 4:06
mvePIEBALDconsult13-Apr-09 4:06 
AnswerRe: converting string to date Pin
ramzg13-Apr-09 3:36
ramzg13-Apr-09 3:36 
Questionexecute one application from another dummy application Pin
NetQuestions13-Apr-09 0:29
NetQuestions13-Apr-09 0:29 
AnswerRe: execute one application from another dummy application Pin
Colin Angus Mackay13-Apr-09 0:37
Colin Angus Mackay13-Apr-09 0:37 
GeneralRe: execute one application from another dummy application Pin
NetQuestions15-Apr-09 4:17
NetQuestions15-Apr-09 4:17 
Questionhow to get link download file like IDM ? Pin
kimlongap13-Apr-09 0:18
kimlongap13-Apr-09 0:18 
Questionhave a child while parent is not accesible Pin
cppwxwidgetsss12-Apr-09 23:52
cppwxwidgetsss12-Apr-09 23:52 
AnswerRe: have a child while parent is not accesible Pin
Vikram A Punathambekar13-Apr-09 0:10
Vikram A Punathambekar13-Apr-09 0:10 
GeneralRe: have a child while parent is not accesible Pin
Fired.Fish.Gmail13-Apr-09 6:01
Fired.Fish.Gmail13-Apr-09 6:01 
GeneralRe: have a child while parent is not accesible Pin
cppwxwidgetsss13-Apr-09 18:25
cppwxwidgetsss13-Apr-09 18:25 
GeneralRe: have a child while parent is not accesible Pin
Fired.Fish.Gmail14-Apr-09 0:03
Fired.Fish.Gmail14-Apr-09 0:03 
GeneralRe: have a child while parent is not accesible Pin
cppwxwidgetsss14-Apr-09 1:12
cppwxwidgetsss14-Apr-09 1:12 
GeneralRe: have a child while parent is not accesible Pin
Vikram A Punathambekar14-Apr-09 7:27
Vikram A Punathambekar14-Apr-09 7:27 
Questionresolving lag connection to remote server? Pin
[c]amilo12-Apr-09 22:28
[c]amilo12-Apr-09 22:28 
QuestionClosing a form Pin
Deepali Khalkar12-Apr-09 22:27
Deepali Khalkar12-Apr-09 22:27 
AnswerRe: Closing a form Pin
Juan1R12-Apr-09 22:58
Juan1R12-Apr-09 22:58 
AnswerRe: Closing a form Pin
#realJSOP13-Apr-09 0:19
professional#realJSOP13-Apr-09 0:19 
Questionhow to read the specific tag [modified] Pin
YiXiang_8912-Apr-09 21:28
YiXiang_8912-Apr-09 21:28 
hi all

This is to read the tag line by line.
using System.Xml;

...
...
...

XmlTextReader reader = new XmlTextReader ("reader.xml");
while (reader.Read())
{
switch (reader.NodeType)
{
case XmlNodeType.Element: // The node is an element.
Console.Write("<" + reader.Name);
Console.WriteLine(">");
break;
case XmlNodeType.Text: //Display the text in each element.
Console.WriteLine (reader.Value);
break;
case XmlNodeType.EndElement: //Display the end of the element.
Console.Write("</" + reader.Name);
Console.WriteLine(">");
break;
}
}
Console.ReadLine();



How do i read the specific tag
if i just want to read all the tag that have this < big > tag?

thank you

modified on Monday, April 13, 2009 3:36 AM

AnswerRe: how to read the specific tag Pin
Jimmanuel13-Apr-09 0:55
Jimmanuel13-Apr-09 0:55 
QuestionComponent to compare codes Pin
Surya Ayyagari12-Apr-09 21:00
Surya Ayyagari12-Apr-09 21:00 
Questionhow to call a webmethod in a Webservice using windows scheduler in windows application? Pin
ravi.vellanky12-Apr-09 20:55
ravi.vellanky12-Apr-09 20:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.