mirror of
https://github.com/beefytech/Beef.git
synced 2025-06-10 12:32:20 +02:00
Add universal WriteLine
This commit is contained in:
parent
0facfb8c29
commit
15eebce64a
1 changed files with 7 additions and 0 deletions
|
@ -113,5 +113,12 @@ namespace System
|
|||
str.AppendF(fmt, params args);
|
||||
WriteLine(str);
|
||||
}
|
||||
|
||||
public static void WriteLine(Object obj)
|
||||
{
|
||||
String str = scope String();
|
||||
obj.ToString(str);
|
||||
WriteLine(str);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue