Results 1 to 2 of 2

Thread: wireless messaging application

  1. #1

    Thread Starter
    New Member
    Join Date
    Oct 2007
    Posts
    3

    wireless messaging application

    hi.. i doing a proj on this wireless messaging application using C#. i cant understand the code as i am weak in this area. i wish that someone out there able to tell me wat does this statements mean... apreciate greatly !!




    for (i = 1; i <= result.Length; i++)
    {
    serialData[i + 3] = Convert.ToByte(System.Convert.ToInt32(result[i - 1]));
    }

    //Calculates the 8 bit checksum
    intCheck = 0;

    for (i = 0; i <= result.Length + 4; i++)
    {
    intCheck = intCheck + serialData[i];
    intCheck = intCheck & 0xFF;
    }
    if (intCheck > 127)
    {
    intCheck = intCheck ^ 0xFF;
    }

  2. #2
    eXtreme Programmer .paul.'s Avatar
    Join Date
    May 2007
    Location
    Chelmsford UK
    Posts
    26,422

    Re: wireless messaging application

    try the c# forum

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width