예제 #1
0
void FormatTest()
{
	String test = Format("UniquePtr<@>{ <@, @, @> }", TypeOf<Vec3>().GetName(), 1.f, 2.5f, 3.5f);
	String fTest = fFormat("UniquePtr<@>{ <@, @, @> }", TypeOf<Vec3>().GetName(), 1.f, 2.5f, 3.5f);

	Console::WriteLine(test);
	Console::WriteLine(fTest);
}
예제 #2
0
String OptionVar::GetValue()
{
    return fFormat(this);
}