mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
StringView Write
This commit is contained in:
parent
9697c2a682
commit
b81c7ef4bf
1 changed files with 5 additions and 0 deletions
|
@ -44,6 +44,11 @@ namespace System.Diagnostics
|
|||
Write(line.Ptr, line.Length);
|
||||
}
|
||||
|
||||
public static void Write(StringView sv)
|
||||
{
|
||||
Write(sv.[Friend]mPtr, sv.[Friend]mLength);
|
||||
}
|
||||
|
||||
public static void Write(String fmt, params Object[] args)
|
||||
{
|
||||
String str = scope String(4096);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue