1
0
Fork 0
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:
ExMatics HydrogenC 2020-03-25 21:50:34 +08:00 committed by GitHub
parent 0facfb8c29
commit 15eebce64a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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);
}
}
}