illustrates reading and writing string data : StringBuilder « Development Class « 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 » Development Class » StringBuilderScreenshots 
illustrates reading and writing string data
illustrates reading and writing string data

/*
Mastering Visual C# .NET
by Jason Price, Mike Gunderloy

Publisher: Sybex;
ISBN: 0782129110
*/

 /*
  Example15_17.cs illustrates reading and writing string data
*/

using System;
using System.IO;
using System.Text;

public class Example15_17 
{

  public static void Main() 
  {

    // create a new string to work with
    StringBuilder sb = new StringBuilder();

    // use a StringWriter to write data to the string
    StringWriter sw = new StringWriter(sb);

    // write some text to the string
    sw.Write("This is a test of the StringWriter class");
    sw.Close();

    // now open the string for reading
    StringReader sr = new StringReader(sb.ToString());

    // read the entire string into a buffer and display it
    string EntireString;
  
    EntireString = sr.ReadToEnd();
    Console.WriteLine(EntireString);

    // clean up
    sr.Close();

  }

}



           
       
Related examples in the same category
1.Create a StringBuilder which hold 100 characters.
2.Length and Indexer
3.Use StringBuilder to reverse a string
4.using the StringBuilder methods Replace, Insert, Append, AppendFormat, and Remove:
5.String ConcatenationString Concatenation
6.Replace char in a StringBuilder object
7.Replace Char with String
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.