mirror of
https://github.com/aharabada/glitchy-engine-beef.git
synced 2026-09-06 05:01:53 +00:00
Added String.SetF
This commit is contained in:
@@ -23,5 +23,16 @@ namespace System
|
|||||||
{
|
{
|
||||||
// TODO!
|
// 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