Demonstrate the use of the Null stream as a bit bucket : Stream Null « File Stream « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Design Patterns
8.Development Class
9.Event
10.File Stream
11.Generics
12.GUI Windows Form
13.Language Basics
14.LINQ
15.Network
16.Office
17.Reflection
18.Regular Expressions
19.Security
20.Services Event
21.Thread
22.Web Services
23.Windows
24.Windows Presentation Foundation
25.XML
26.XML LINQ
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » File Stream » Stream NullScreenshots 
Demonstrate the use of the Null stream as a bit bucket
Demonstrate the use of the Null stream as a bit bucket

/*
C# Programming Tips & Techniques
by Charles Wright, Kris Jamsa

Publisher: Osborne/McGraw-Hill (December 28, 2001)
ISBN: 0072193794
*/
// NullStrm.cs -- demonstrate the use of the Null stream as a bit bucket.
//
//                Compile this program with the following command line:
//                    C:>csc NullStrm.cs
//
using System;
using System.IO;
namespace nsStreams
{
    public class NullStrm
    {
        static public void Main ()
        {
            byte [] b = new byte [256];
            int count = Stream.Null.Read (b, 0, b.Length);
            Console.WriteLine ("Read {0} bytes", count);
            string str = "Hello, World!";
            StringToByte (out b, str);
            Stream.Null.Write (b, 0, b.Length);

            // Attach a reader and writer to the Null stream
            StreamWriter writer = new StreamWriter (Stream.Null);
            StreamReader reader = new StreamReader (Stream.Null);
            writer.Write ("This is going nowhere");
            str = reader.ReadToEnd ();
            Console.Write ("The string read contains {0} bytes", str.Length);
        }

        // Convert a buffer of type string to byte
        static void StringToByte (out byte [] b, string str)
        {
            b = new byte [str.Length];
            for (int x = 0; x < str.Length; ++x)
            {
                b[x(bytestr [x];
            }
        }
    }
}



           
       
Related examples in the same category
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.