Click here to Skip to main content
15,885,365 members
Please Sign up or sign in to vote.
4.00/5 (1 vote)
See more:
Following Code does not set the property.
It just does nothing and at debugging just jumps ahead, even with F11
C#
job.TDataReference.CheckedOut = false;

job is of Type TJob
A class I build myself with the property:
C#
public TDataReference TDataReference
{
    get
    {
        return new TDataReference(this.DataReference);
    }
    set { this.tDataReference = value; }
}

TDataReference is also a class I build myself with the property:
C#
public bool CheckedOut
{
    get { return (dataRow[CHECKEDOUT].ToString() == "True"); }
    set { dataRow[CHECKEDOUT] = value.ToString(); }
}

and and the private member dataRow of Type DataRow

What is funny is that following code works fine and sets the property:
C#
TDataReference dr = job.TDataReference;
dr.CheckedOut = false;

Who can explain that to me.
Posted
Updated 9-Apr-13 8:02am
v2

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

  Print Answers RSS
Top Experts
Last 24hrsThis month


CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900