Click here to Skip to main content
15,890,399 members
Home / Discussions / C#
   

C#

 
GeneralRe: Install software and menus depending upon radion button selection option used in MSI Pin
Eddy Vluggen21-Feb-13 7:06
professionalEddy Vluggen21-Feb-13 7:06 
Questionproject Pin
pramodrastogi9119-Feb-13 18:14
pramodrastogi9119-Feb-13 18:14 
AnswerRe: project Pin
Jibesh19-Feb-13 19:52
professionalJibesh19-Feb-13 19:52 
AnswerRe: project Pin
Abhinav S19-Feb-13 22:25
Abhinav S19-Feb-13 22:25 
AnswerRe: project Pin
fjdiewornncalwe20-Feb-13 3:17
professionalfjdiewornncalwe20-Feb-13 3:17 
QuestionBinary stream '0' does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization. Pin
kandel1519-Feb-13 14:25
kandel1519-Feb-13 14:25 
AnswerRe: Binary stream '0' does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization. Pin
BobJanova20-Feb-13 0:04
BobJanova20-Feb-13 0:04 
AnswerRe: Binary stream '0' does not contain a valid BinaryHeader. Possible causes are invalid stream or object version change between serialization and deserialization. Pin
Pete O'Hanlon20-Feb-13 0:11
mvePete O'Hanlon20-Feb-13 0:11 
The problem is that one of the keys you attempt to read doesn't match the name of the key that you write. It's generally a bad idea to use strings like this in serialisation code - you should really use constants. That way, you make sure that the string is the same on the input and the output.

This code has the problem:
C#
[Serializable()]
       public class index   //object idex indicate where cube entry on the screen from other player
       {
           public int x;
           public int y;
           public int indexOfTargetCube;     // that mark own of index( cube)
           public byte direct;
           public index()
           {
           }

             public index (SerializationInfo info, StreamingContext ctxt)
          {

              x = (int)info.GetValue("x", typeof(int));
              y = (int)info.GetValue("y", typeof(int));
              indexOfTargetCube = (int)info.GetValue("temp", typeof(int));
              direct=(byte)info.GetValue("isConnected",typeof(byte));


          }
             public void GetObjectData(SerializationInfo info, StreamingContext ctxt)
           {
               info.AddValue("x", x);
               info.AddValue("y", y);
               info.AddValue("indexOfTargetCube", indexOfTargetCube);
               info.AddValue("direct", direct);
           }

       }
You use indexOfTargetCube when you write the data out, and you use temp when you read the same item back in.
I was brought up to respect my elders. I don't respect many people nowadays.

CodeStash - Online Snippet Management | My blog | MoXAML PowerToys | Mole 2010 - debugging made easier

QuestionWindows Mobile Pin
aymen Tn19-Feb-13 5:04
aymen Tn19-Feb-13 5:04 
AnswerRe: Windows Mobile Pin
Abhinav S19-Feb-13 5:49
Abhinav S19-Feb-13 5:49 
GeneralRe: Windows Mobile Pin
aymen Tn19-Feb-13 22:44
aymen Tn19-Feb-13 22:44 
AnswerRe: Windows Mobile Pin
Pete O'Hanlon19-Feb-13 6:00
mvePete O'Hanlon19-Feb-13 6:00 
GeneralRe: Windows Mobile Pin
aymen Tn19-Feb-13 22:42
aymen Tn19-Feb-13 22:42 
AnswerRe: Windows Mobile Pin
Pete O'Hanlon20-Feb-13 2:12
mvePete O'Hanlon20-Feb-13 2:12 
QuestionHow to create dynamic menu Pin
ebrahim kalteh19-Feb-13 1:36
ebrahim kalteh19-Feb-13 1:36 
AnswerRe: How to create dynamic menu Pin
BobJanova19-Feb-13 3:06
BobJanova19-Feb-13 3:06 
GeneralRe: How to create dynamic menu Pin
ebrahim kalteh19-Feb-13 8:13
ebrahim kalteh19-Feb-13 8:13 
GeneralRe: How to create dynamic menu Pin
Jibesh19-Feb-13 8:58
professionalJibesh19-Feb-13 8:58 
QuestionCLOSING FORMS Pin
airmigjr19-Feb-13 0:29
airmigjr19-Feb-13 0:29 
AnswerRe: CLOSING FORMS Pin
N a v a n e e t h19-Feb-13 1:05
N a v a n e e t h19-Feb-13 1:05 
AnswerRe: CLOSING FORMS PinPopular
V.19-Feb-13 1:23
professionalV.19-Feb-13 1:23 
GeneralRe: CLOSING FORMS Pin
Jegan Thiyagesan19-Feb-13 3:26
Jegan Thiyagesan19-Feb-13 3:26 
AnswerRe: CLOSING FORMS Pin
Dave Kreskowiak19-Feb-13 2:11
mveDave Kreskowiak19-Feb-13 2:11 
GeneralRe: CLOSING FORMS Pin
airmigjr19-Feb-13 3:25
airmigjr19-Feb-13 3:25 
GeneralRe: CLOSING FORMS Pin
Dave Kreskowiak19-Feb-13 10:25
mveDave Kreskowiak19-Feb-13 10:25 

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.