mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-11 12:54:15 +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);
|
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)
|
public static void Write(String fmt, params Object[] args)
|
||||||
{
|
{
|
||||||
String str = scope String(4096);
|
String str = scope String(4096);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue