writer クラス : Write(string) メソッド

説明

writer に文字列を書き込みます。

構文

writerInstance.Write(string data)

引数

クラス名前説明
stringdatawriter に書き込まれる文字列。

返り値

無し。

サンプルコード

1:

writer w = new writer("c:\somewhere...\sample.txt");

2:

w.Write("Hello world!");

注意

これは、System.IO.StreamWriter.Write(string) メソッドのラッパーです。

参照リンク

Copyright © Cooker All rights reserved.