Skip to Main Content
C# Cookbook, 2nd Edition
book

C# Cookbook, 2nd Edition

by Jay Hilyard, Stephen Teilhet
January 2006
Intermediate to advanced content levelIntermediate to advanced
1184 pages
43h 23m
English
O'Reilly Media, Inc.
Content preview from C# Cookbook, 2nd Edition
This is the Title of the Book, eMatter Edition
Copyright © 2007 O’Reilly & Associates, Inc. All rights reserved.
408
|
Chapter 7: Exception Handling
The output from Example 7-5 is presented in Example 7-6.
binaryWrite.Serialize(ObjectFile, se5);
ObjectFile.Close( );
BinaryFormatter binaryRead = new BinaryFormatter( );
ObjectFile = File.OpenRead("se1.object");
object Data = binaryRead.Deserialize(ObjectFile);
Console.WriteLine("----------" + Environment.NewLine + Data);
ObjectFile.Close( );
ObjectFile = File.OpenRead("se2.object");
Data = binaryRead.Deserialize(ObjectFile);
Console.WriteLine("----------" + Environment.NewLine + Data);
ObjectFile.Close( );
ObjectFile = File.OpenRead("se3.object");
Data = binaryRead.Deserialize(ObjectFile);
Console.WriteLine("----------" + Environment.NewLine + Data);
ObjectFile.Close( );
ObjectFile = File.OpenRead("se4.object");
Data = binaryRead.Deserialize(ObjectFile);
Console.WriteLine("----------" + Environment.NewLine + Data);
ObjectFile.Close( );
ObjectFile = File.OpenRead("se5.object");
Data = binaryRead.Deserialize(ObjectFile);
Console.WriteLine("----------" + Environment.NewLine +
Data + Environment.NewLine + "----------");
ObjectFile.Close( );
Console.WriteLine(Environment.NewLine + "END TEST" + Environment.NewLine);
}
Example 7-6. Output displayed by the RemoteComponentException class
TEST EACH CTOR
TEST NEW SERVERNAME PROPERTY
se1.ServerName == ...
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.
Start your free trial

You might also like

C# Cookbook

C# Cookbook

Joe Mayo
C# Cookbook

C# Cookbook

Stephen Teilhet, Jay Hilyard
Head First C#, 4th Edition

Head First C#, 4th Edition

Andrew Stellman, Jennifer Greene

Publisher Resources

ISBN: 0596100639Supplemental ContentCatalog PageErrata