Table of Contents

Class FileText

Namespace
SunamoFileIO.CallOnlyFileIO
Assembly
SunamoFileIO.dll

EN: Provides async methods for reading and writing text files CZ: Poskytuje asynchronní metody pro čtení a zápis textových souborů

public class FileText
Inheritance
FileText
Inherited Members
Extension Methods

Methods

ReadAllText(string)

EN: Reads all text from file asynchronously CZ: Čte veškerý text ze souboru asynchronně

public Task<string> ReadAllText(string path)

Parameters

path string

Returns

Task<string>

WriteAllText(string, string)

EN: Writes all text to file asynchronously CZ: Zapisuje veškerý text do souboru asynchronně

public Task WriteAllText(string path, string content)

Parameters

path string
content string

Returns

Task