1
0
Fork 0
mirror of https://github.com/beefytech/Beef.git synced 2025-06-29 04:55:58 +02:00
Beef/BeefLibs/corlib/src/IFormattable.bf

7 lines
133 B
Beef

namespace System
{
interface IFormattable
{
void ToString(String outString, String format, IFormatProvider formatProvider);
}
}