472,342 Members | 1,594 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 472,342 software developers and data experts.

Conditional Expression Testing for Nulls

a
I'm having trouble testing a custom object. I've tried many different
approaches. One is shown below.

The XML below shows the state of the object and I'm trying to test for that
state, ie there are NO classes in the Classes collection (Classes) of the
custom object.

The conditional expression returns the error shown below it...

================================================== =====XML returned by
Custom Object

<ArrayOfTeachers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">

<Teacher Id="1" Name="Bob" >

<Classes />

</Teacher>

</ArrayOfTeachers>

================================================== =====Conditional Expression

if (Profile.Teachers[0].Classes[0] == null) // fails

================================================== ===== Error message

Index was out of range. Must be non-negative and less than the size of the
collection.
Parameter name: index

Source Error:

Line 277: get
Line 278: {
Line 279: return (Class)List[index];
Line 280: }
Line 281: }

Any ideas on how to test for No Classes in the Class collection? I can post
the custom object if that would help.

Thanks,

Paul

Feb 24 '06 #1
4 1824
a <a@discussions.microsoft.com> wrote:
I'm having trouble testing a custom object. I've tried many different
approaches. One is shown below.

The XML below shows the state of the object and I'm trying to test for that
state, ie there are NO classes in the Classes collection (Classes) of the
custom object.

The conditional expression returns the error shown below it...


<snip>

How about

if (Profile.Teachers[0].Classes.Count==0)

It's hard to say exactly whether that'll work or not without knowing
what the type of the property "Classes" is, but it's worth a try...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 24 '06 #2
a
Jon:

I tried that, as well as everything else, but no go.

The Count method does not exist on the Teahcers object, just on the Teacer
object.

I wondered if there was a problem with the indexer because I'm using this
inside a dropdownlist, but I don't think that is the problem. It may have
more to do with the way that I structured the custom object. Since this is
my first custom object, I definitely don't know what I'm doing.

I'll include the custom object. It's purpose is to has Teachers who have
Classes that in turn have Students.

Any other ideas?

Thanks
---------------------------------------------------------------------------

using System;
using System.Collections;
using System.Xml.Serialization;//[XmlIgnore] // XmlIgnore is need for
proper nesting of the xml output

namespace Teachers1
{
#region Student
Object++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++

[Serializable()]
public class Student
{
#region Private members (Fields) ++++++++++++++++++++

int id;
string name;

#endregion -------------------------------------------

#region Public Accessors (Properties) ++++++++++++++

[XmlAttribute]
public int Id
{
get { return this.id; }
set { this.id = value; }
}

[XmlAttribute]
public string Name
{
get { return this.name; }
set { this.name = value; }
}

#endregion -------------------------------------------

#region Constructors +++++++++++++++++++++++++++++++++

// Empty constructor
public Student()
{ }

// Constructor 2
public Student(int Id, string Name)
{
this.id = Id;
this.name = Name;
}

#endregion -------------------------------------------
}

#endregion

[Serializable()]
public class Students : CollectionBase
{
#region Indexer +++++++++++++++++++++++++++++++++

public Student this[int index]
{
set
{
List[index] = value;
}
get
{
return (Student)List[index];
}
}

#endregion ------------------------------------

#region Public Methods ++++++++++++++++++++++++++

public int Add(Student value)
{
return List.Add(value);
}
public int IndexOf(Student value)
{
return List.IndexOf(value);
}
public void Insert(int index, Student value)
{
List.Insert(index, value);
}
public void Remove(Student value)
{
List.Remove(value);
}
public bool Contains(Student value)
{
return List.Contains(value);
}

#endregion -------------------------------------------

#region Constructors +++++++++++++++++++++++++++++++++

public Students()
{ }

#endregion -------------------------------------------
}

#region Class
Object++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++++

[Serializable()]
public class Class
{
#region Private members (Fields) ++++++++++++++++++++

int id;
string name;
Teachers1.Students students = new Teachers1.Students();

#endregion -------------------------------------------

#region Public Accessors (Properties) ++++++++++++++

[XmlAttribute]
public int Id
{
get { return id; }
set { id = value; }
}
[XmlAttribute]
public string Name
{
get { return name; }
set { name = value; }
}

//[XmlAttribute] can't use on Complex Type
public Teachers1.Students Students
{
get { return this.students; }
set { this.students = value; }
}

#endregion -------------------------------------------

#region Constructors +++++++++++++++++++++++++++++++++

// empty constructor
public Class()
{ }

// Full Constructor
public Class(int Id, string Name, Teachers1.Students
Students)
{
this.id = Id;
this.name = Name;
this.students = Students;
}

#endregion -------------------------------------------
}

#endregion

[Serializable()]
public class Classes : CollectionBase
{
#region Indexer +++++++++++++++++++++++++++++++++

public Class this[int index]
{
set
{
List[index] = value;
}
get
{
return (Class)List[index];
}
}

#endregion ------------------------------------

#region Public Methods ++++++++++++++++++++++++++

public int Add(Class value)
{
return List.Add(value);
}
public int IndexOf(Class value)
{
return List.IndexOf(value);
}
public void Insert(int index, Class value)
{
List.Insert(index, value);
}
public void Remove(Class value)
{
List.Remove(value);
}
public bool Contains(Class value)
{
return List.Contains(value);
}

#endregion -------------------------------------------

#region Constructors +++++++++++++++++++++++++++++++++

public Classes()
{ }

#endregion -------------------------------------------
}

#region Teacher
Object++++++++++++++++++++++++++++++++++++++++++++ ++++++++++++

[Serializable()]
public class Teacher
{
#region Private members (Fields) ++++++++++++++++++++

private int id;
private string name;
Teachers1.Classes classes = new Teachers1.Classes();

#endregion -------------------------------------------

#region Public Accessors (Properties) ++++++++++++++
//[XmlAttribute(AttributeName = "id", Namespace =
"urn:schemas-microsoft-com:xml-updategram")]
[XmlAttribute]
public int Id
{
get { return id; }
set { id = value; }
}
[XmlAttribute]
public string Name
{
get { return name; }
set { name = value; }
}

//[XmlAttribute] can't use on Complex Type
public Teachers1.Classes Classes
{
get { return this.classes; }
set { this.classes = value; }
}

#endregion -------------------------------------------

#region Constructors +++++++++++++++++++++++++++++++++

// Default Constructor
public Teacher()
{ }

// Constructor 2
public Teacher(int id, string Name, Teachers1.Classes
Classes)
{
this.id = Id;
this.name = Name;
this.classes = Classes;
}
#endregion -------------------------------------------
}

#endregion

[Serializable()]
public class Teachers : CollectionBase
{
#region Private members (Fields) +++++++++++++++
#endregion --------------------------------------

#region Indexer +++++++++++++++++++++++++++++++++

public Teacher this[int index]
{
set
{
List[index] = value;
}
get
{
return (Teacher)List[index];
}
}

#endregion ------------------------------------

#region Public Methods ++++++++++++++++++++++++++

public int Add(Teacher value)
{
return List.Add(value);
}
public int IndexOf(Teacher value)
{
return List.IndexOf(value);
}
public void Insert(int index, Teacher value)
{
List.Insert(index, value);
}
public void Remove(Teacher value)
{
List.Remove(value);
}
public bool Contains(Teacher value)
{
return List.Contains(value);
}
#endregion --------------------------------------

#region Constructors ++++++++++++++++++++++++++++

public Teachers() { }

#endregion ---------------------------------------
}
}
==============================================

"Jon Skeet [C# MVP]" wrote:
a <a@discussions.microsoft.com> wrote:
I'm having trouble testing a custom object. I've tried many different
approaches. One is shown below.

The XML below shows the state of the object and I'm trying to test for that
state, ie there are NO classes in the Classes collection (Classes) of the
custom object.

The conditional expression returns the error shown below it...


<snip>

How about

if (Profile.Teachers[0].Classes.Count==0)

It's hard to say exactly whether that'll work or not without knowing
what the type of the property "Classes" is, but it's worth a try...

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Feb 24 '06 #3
a <a@discussions.microsoft.com> wrote:
I tried that, as well as everything else, but no go.

The Count method does not exist on the Teahcers object, just on the Teacer
object.


I wasn't calling it on either of those though - I was calling it on a
Classes object, which does have a Count method.

If you want to know whether there are any *teachers*, use

if (Profile.Teachers.Count==0)

Otherwise, the code I gave should show whether the first teacher has 0
classes.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Feb 24 '06 #4
a
Jon:

OK, I tested what you suggested and I evidently have another problem (it may
be with the indexer).

I tried this code to build all the objects at the same time and I get the
same error as previously posted. Only the first object is built.
Profile.Teachers.Add(new Teachers1.Teacher());
// Add New Teacher to Profile
Profile.Teachers[0].Classes.Add(new Teachers1.Class());
// Add New Class
Profile.Teachers[0].Classes[0].Students.Add(new
Teachers1.Student()); // Add New Student

----------------------------------------------------------------

<?xml version="1.0" encoding="utf-16"?>
<ArrayOfTeachers xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<Teacher Id="0" Name="Bob">
<Classes />
</Teacher>
</ArrayOfTeachers>

I'm going to try to restructure my code to see if I can avoid this, if I
can't, I'll ask another question later, but thank you for verifying that
other code for me.

Paul
=============================================

"Jon Skeet [C# MVP]" wrote:
a <a@discussions.microsoft.com> wrote:
I tried that, as well as everything else, but no go.

The Count method does not exist on the Teahcers object, just on the Teacer
object.


I wasn't calling it on either of those though - I was calling it on a
Classes object, which does have a Count method.

If you want to know whether there are any *teachers*, use

if (Profile.Teachers.Count==0)

Otherwise, the code I gave should show whether the first teacher has 0
classes.

--
Jon Skeet - <sk***@pobox.com>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too

Feb 24 '06 #5

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

8
by: neblackcat | last post by:
Would anyone like to comment on the following idea? I was just going to offer it as a new PEP until it was suggested that I post it here for...
28
by: Benjamin Niemann | last post by:
Hello, I've been just investigating IE conditional comments - hiding things from non-IE/Win browsers is easy, but I wanted to know, if it's...
5
by: John Baker | last post by:
Hi: I have a field that i wish to use the conditional format capability on, and for some reason it wont work. The field is a a text box: =-...
1
by: GGerard | last post by:
Hello Is there a way to use a variable in the Conditional Formatting of a Textbox? Example : I want the background of a textbox in a...
6
by: Chris Dunaway | last post by:
Consider this code (.Net 2.0) which uses a nullable type: private void button1_Click(object sender, System.EventArgs e) { DateTime?...
3
by: Danny Tuppeny | last post by:
Hi all, I've got a DataList that's bound to a datasource with two columns (well, two that matter). One is called GigDate, and one is called...
17
by: raj chahal | last post by:
Hi there I need to be able to print on screen when I check if a value within a db <td> <% if ((Recordset1.Fields.Item("profile1").Value) <>...
5
by: A.M | last post by:
Hi, I am using Python 2.4. I read the PEP 308 at: http://www.python.org/dev/peps/pep-0308/
5
by: paulo | last post by:
Can anyone please tell me how the C language interprets the following code: #include <stdio.h> int main(void) { int a = 1; int b = 10; int...
0
by: concettolabs | last post by:
In today's business world, businesses are increasingly turning to PowerApps to develop custom business applications. PowerApps is a powerful tool...
0
better678
by: better678 | last post by:
Question: Discuss your understanding of the Java platform. Is the statement "Java is interpreted" correct? Answer: Java is an object-oriented...
0
by: Kemmylinns12 | last post by:
Blockchain technology has emerged as a transformative force in the business world, offering unprecedented opportunities for innovation and...
0
by: Naresh1 | last post by:
What is WebLogic Admin Training? WebLogic Admin Training is a specialized program designed to equip individuals with the skills and knowledge...
2
by: Matthew3360 | last post by:
Hi, I have a python app that i want to be able to get variables from a php page on my webserver. My python app is on my computer. How would I make it...
0
by: AndyPSV | last post by:
HOW CAN I CREATE AN AI with an .executable file that would suck all files in the folder and on my computerHOW CAN I CREATE AN AI with an .executable...
0
by: Arjunsri | last post by:
I have a Redshift database that I need to use as an import data source. I have configured the DSN connection using the server, port, database, and...
0
hi
by: WisdomUfot | last post by:
It's an interesting question you've got about how Gmail hides the HTTP referrer when a link in an email is clicked. While I don't have the specific...
0
by: Matthew3360 | last post by:
Hi, I have been trying to connect to a local host using php curl. But I am finding it hard to do this. I am doing the curl get request from my web...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.