Click here to Skip to main content
15,895,462 members
Home / Discussions / .NET (Core and Framework)
   

.NET (Core and Framework)

 
QuestionIs DoDirectPayment method of PayPal applicable in Australia Pin
samrat.net10-Apr-08 23:30
samrat.net10-Apr-08 23:30 
GeneralRe: Is DoDirectPayment method of PayPal applicable in Australia Pin
Christian Graus11-Apr-08 2:13
protectorChristian Graus11-Apr-08 2:13 
Generalwhat's new in dotnet framework 2.0 architecture compared to dotnet framework 1.1 architecture Pin
padma p10-Apr-08 23:24
padma p10-Apr-08 23:24 
GeneralRe: what's new in dotnet framework 2.0 architecture compared to dotnet framework 1.1 architecture Pin
Thomas Stockwell11-Apr-08 1:21
professionalThomas Stockwell11-Apr-08 1:21 
GeneralRe: what's new in dotnet framework 2.0 architecture compared to dotnet framework 1.1 architecture Pin
Dave Kreskowiak11-Apr-08 6:58
mveDave Kreskowiak11-Apr-08 6:58 
GeneralXmlTextReader - try again Pin
coleydog10-Apr-08 19:05
coleydog10-Apr-08 19:05 
GeneralRe: XmlTextReader - try again Pin
Christian Graus10-Apr-08 20:35
protectorChristian Graus10-Apr-08 20:35 
GeneralRe: XmlTextReader - try again Pin
Mark J. Miller14-Apr-08 5:50
Mark J. Miller14-Apr-08 5:50 
Use the IsEmptyElement property of the XmlTextReader:

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Xml;
using System.IO;

namespace ReadingXmlText
{
class Program
{
static void Main(string[] args)
{
String data = "<root><standard attributeA=\"value\" attributeB=\"value2\"></standard><emptyElement attributeA=\"value\" attributeB=\"value2\" /></root>";

StringReader stream = new StringReader(data);

XmlTextReader rdr = new XmlTextReader(stream);

while (rdr.Read())
{
Console.Write(rdr.Name + ": ");
Console.Write(rdr.NodeType);
if (rdr.IsEmptyElement)
Console.WriteLine(" (Empty)");
else
Console.WriteLine();
}
}
}
}

Mark's blog: developMENTALmadness.blogspot.com

Funniest variable name:
lLongDong - spotted in legacy code, was used to determine how long a beep should be.
- Dave Bacher

GeneralRe: XmlTextReader - try again Pin
coleydog16-Apr-08 14:08
coleydog16-Apr-08 14:08 
GeneralXmlTextReader - Child elements. Pin
coleydog10-Apr-08 18:59
coleydog10-Apr-08 18:59 
GeneralRe: XmlTextReader - Child elements. Pin
Dave Kreskowiak11-Apr-08 7:04
mveDave Kreskowiak11-Apr-08 7:04 
GeneralRe: XmlTextReader - Child elements. Pin
coleydog11-Apr-08 15:02
coleydog11-Apr-08 15:02 
GeneralRe: XmlTextReader - Child elements. Pin
Dave Kreskowiak11-Apr-08 18:14
mveDave Kreskowiak11-Apr-08 18:14 
Generalhi travel to assembly Pin
sujithkumarsl10-Apr-08 17:53
sujithkumarsl10-Apr-08 17:53 
GeneralRe: hi travel to assembly Pin
Dave Kreskowiak11-Apr-08 6:59
mveDave Kreskowiak11-Apr-08 6:59 
QuestionConverting Word .doc to image file Pin
kensai10-Apr-08 1:38
kensai10-Apr-08 1:38 
GeneralCross post - Please ignore Pin
Pete O'Hanlon10-Apr-08 2:04
mvePete O'Hanlon10-Apr-08 2:04 
GeneralOpen Source Application with good OO Design Pin
lonforce9-Apr-08 23:44
lonforce9-Apr-08 23:44 
GeneralRe: Open Source Application with good OO Design Pin
Christian Graus10-Apr-08 1:52
protectorChristian Graus10-Apr-08 1:52 
GeneralRe: Open Source Application with good OO Design Pin
papadimitriou10-Apr-08 4:58
papadimitriou10-Apr-08 4:58 
GeneralRe: Open Source Application with good OO Design Pin
lonforce11-Apr-08 0:49
lonforce11-Apr-08 0:49 
QuestionHow to properly pre-load assemblies (in background) to prevent delay on first use? Pin
User 32754409-Apr-08 23:17
User 32754409-Apr-08 23:17 
AnswerRe: How to properly pre-load assemblies (in background) to prevent delay on first use? Pin
led mike10-Apr-08 5:06
led mike10-Apr-08 5:06 
GeneralRe: How to properly pre-load assemblies (in background) to prevent delay on first use? Pin
User 327544013-Apr-08 21:11
User 327544013-Apr-08 21:11 
QuestionHow to modify the aseembly Pin
sujithkumarsl9-Apr-08 18:35
sujithkumarsl9-Apr-08 18:35 

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.