mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-05 13:01:52 +00:00
Added String.SetF
This commit is contained in:
@@ -23,5 +23,16 @@ namespace System
|
||||
{
|
||||
// TODO!
|
||||
}
|
||||
|
||||
public void SetF(IFormatProvider formatProvider, StringView format, params Span<Object> args)
|
||||
{
|
||||
Clear();
|
||||
AppendF(formatProvider, format, params args);
|
||||
}
|
||||
|
||||
public void SetF(StringView format, params Span<Object> args)
|
||||
{
|
||||
SetF((IFormatProvider)null, format, params args);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user