Example #1
0
 public bool Run()
 {
     Console.WriteLine(_util.GetName());
     Console.WriteLine(_util.MyAddString("Hej", "Sebastian"));
     return(true);
 }
Example #2
0
 public bool Run()
 {
     Console.WriteLine(appUtil.MyAddString("This is ", "PlugInn2 calling!"));
     Console.WriteLine("Wake up " + appUtil.GetName() + "!");
     return(true);
 }
Example #3
0
 public bool Run()
 {
     Console.WriteLine($"Hey man {appUtil.GetName()} from v2 dll 2!" +
                       $", lets also print some strings.. {appUtil.MyAddString("hey ", "you..")}");
     return(true);
 }
Example #4
0
 public bool Run()
 {
     Console.WriteLine(appUtil.MyAddString("Hello ", "World"));
     Console.WriteLine("Your name is: " + appUtil.GetName());
     return(true);
 }