C# StringWriter Write(UInt64)

Description

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

Syntax

StringWriter.Write(UInt64) has the following syntax.


[CLSCompliantAttribute(false)]
public virtual void Write(
  ulong value
)

Parameters

StringWriter.Write(UInt64) has the following parameters.

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

Returns

StringWriter.Write(UInt64) method returns

Example


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

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

        strWriter.Write((UInt64)1);
        
        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