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