C# Corner
Tech
News
Videos
Forums
Trainings
Books
Live
More
Interviews
Events
Jobs
Learn
Career
Members
Blogs
Challenges
Certifications
Bounties
Contribute
Article
Blog
Video
Ebook
Interview Question
Collapse
Feed
Dashboard
Wallet
Learn
Achievements
Network
Refer
Rewards
SharpGPT
Premium
Contribute
Article
Blog
Video
Ebook
Interview Question
Register
Login
Tags
No tag found
Content Filter
Articles
Videos
Blogs
Resources
News
Forums
Interviews
Complexity Level
Beginner
Intermediate
Advanced
Refine by Author
[Clear]
Mike Gold(3)
Kailash Chandra Behera(1)
Vidya Vrat Agarwal(1)
Jaish Mathews(1)
Lee SangEun(1)
Raimund Neumuller(1)
Bipin Joshi(1)
Resources
No resource found
Serialize And Deserialize Objects By Using BinaryFormatter
Apr 09, 2013.
Serializing and deserializing objects using BinaryFormatter in C# is a powerful technique for converting complex objects into a binary format for storage, transmission, or deep cloning. This process allows objects to be saved to a file, sent over a network, or stored in a database. This approach enables data persistence and is commonly used in applications that require object state preservation.
.NET Serialization
Apr 30, 2013.
Serialization in .NET facilitates object state persistence, enabling transmission across networks or storage in various formats like binary and XML. It ensures data integrity, exemplified by the US Visa application, utilizing binary serialization. Implementing serialization requires marking classes with attributes.
Apply Object Serialization In Real Life Situation
Mar 30, 2006.
Object serialization is a process of streaming an object into a byte array. This article explains the object serialization process using a real world example.
Saving and Reading Object to/from a Database
Mar 25, 2002.
An object is a memory stream, which is hard to write using the normal methods. In this article, I show how you can save objects in a database and read back from the database.
Memory Game
Mar 19, 2002.
This is a memory game where you can use your favorite pictures (.bmp, jpg, gif).
Printing Invoices using C# and .NET
Mar 18, 2002.
This program can stand improvements but it will get you started in creating an invoice and printing it to the printer.
Printing out your W2 Form using C# and .NET
Aug 07, 2001.
This article covers a fairly practical aspect of using a computer - dealing with forms.
Serializing Objects In C#
May 14, 2001.
Serialization in C# is the process of converting an object into a stream of bytes to store the object to memory, a database, or a file. Its main purpose is to save the state of an object in order to be able to recreate it when needed. The reverse process is called deserialization.
Business Card Designer Using C#
Jan 30, 2000.
For those of you that don't want to go out and buy a fancy business card utility, this article may prove to be just the trick for designing easy colorful business cards.