1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-18 08:06:04 +02:00

Add parameterless WriteLine to StreamWriter class

This commit is contained in:
disarray2077 2022-01-01 21:22:18 -03:00 committed by GitHub
parent 4acc2cca67
commit e146475a39
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -76,6 +76,11 @@ namespace System.IO
return .Ok; return .Ok;
} }
public Result<void> WriteLine()
{
return Write("\n");
}
public Result<void> WriteLine(StringView str) public Result<void> WriteLine(StringView str)
{ {