Commit 7b510e97 authored by vontio's avatar vontio
Browse files

add fail test

parent 255ad93d
......@@ -566,10 +566,11 @@ namespace NLuaTest.Mock
Console.WriteLine ("Overload with out param" + i + ", " + j);
}
public void Print(params object[] msgs)
public void Print(object format,params object[] args)
{
var output = "";
foreach(var msg in msgs)
//just for test,this is not printf implements
var output = format.ToString() + "\t";
foreach(var msg in args)
{
output += msg.ToString() + "\t";
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment