TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Prashanth
NA
26
0
Error During Binary Deserialize - URGENT
Mar 31 2009 3:45 AM
Hi All ,
When I attempt to deserialize a stream , I receive the error stating " No map for object 67108864 " .
The Code:
Serialize:
list<String> m_QueryList = new list<string>
string str = "some Text";
Stream stream = File.Open(e.FullPath, FileMode.Open);
m_QueryList.Add(str);
binFormater.Serialize(stream, m_QueryList);
stream.Close();
Deserialize :
Stream stream = File.Open(e.FullPath, FileMode.OpenOrCreate);
m_recvdList = (List<string>)binFormater.Deserialize(stream);
stream.Close();
Could someone kindly help me fix this error .
Thanks and Regards,
Prashanth.
Reply
Answers (
1
)
C# Problem
how to get previous forms name