/******************************************************************************
Welcome to GDB Online.
GDB online is an online compiler and debugger tool for C, C++, Python, Java, PHP, Ruby, Perl,
C#, OCaml, VB, Swift, Pascal, Fortran, Haskell, Objective-C, Assembly, HTML, CSS, JS, SQLite, Prolog.
Code, Compile, Run and Debug online from anywhere in world.
*******************************************************************************/
using System;
public static class StringExtension {
public static void PrintToConsole(this string text) {
Console.WriteLine("Xin chào: {0}", text);
}
public static void EatWith(this string text, string name) {
Console.WriteLine("Xin chào: {0}, bạn đang ăn với {1}", text, name);
}
}
class HelloWorld {
static void Main() {
var myName = "CSharp Tourist";
myName.PrintToConsole();
myName.EatWith("Đông");
}
}