C# StringWriter Write(Int64)

Description

StringWriter Write(Int64) Writes the text representation of an 8-byte signed integer to the text string or stream.

Syntax

StringWriter.Write(Int64) has the following syntax.


public virtual void Write(
  long value
)

Parameters

StringWriter.Write(Int64) has the following parameters.

  • value - The 8-byte signed integer to write.

Returns

StringWriter.Write(Int64) method returns

Example


/*w  ww .j  a  v  a  2s  .c o m*/
using System;
using System.Globalization;
using System.IO;

class StrWriter
{
    static void Main()
    {
        StringWriter strWriter = new StringWriter();

        strWriter.Write(123L);
        
        Console.WriteLine(strWriter.ToString());
    }
}

The code above generates the following result.





















Home »
  C# Tutorial »
    System.IO »




BinaryReader
BinaryWriter
Directory
DirectoryInfo
DriveInfo
File
FileInfo
FileStream
MemoryStream
Path
StreamReader
StreamWriter
StringReader
StringWriter