mirror of
https://github.com/antopilo/Nuake.git
synced 2026-09-15 20:08:54 +03:00
Now passing strings between c++ -> c# -> c++
This commit is contained in:
@@ -19,10 +19,9 @@ namespace Nuake.Net
|
||||
/// Prints a message to the console log
|
||||
/// </summary>
|
||||
/// <param name="message">message to be printed</param>
|
||||
public void Log()
|
||||
public void Log(NativeString input)
|
||||
{
|
||||
NativeString str = "Hello from C#";
|
||||
unsafe { LoggerLogIcall(str); }
|
||||
unsafe { LoggerLogIcall(input + " - hello from c# man"); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user