The code below shows the same values for both
private void mainform_Move(o bject sender, EventArgs e)
{
lbllocation.Tex t = "location" + this.Location.T oString();
lbldesktoplocat ion.Text = "location" + this.DesktopLoc ation.ToString( );
}
what exactly is the difference ?
private void mainform_Move(o bject sender, EventArgs e)
{
lbllocation.Tex t = "location" + this.Location.T oString();
lbldesktoplocat ion.Text = "location" + this.DesktopLoc ation.ToString( );
}
what exactly is the difference ?
Comment