CS_0014_Methods1





using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace ConsoleApplication1
{
    class Program
    {
        static void Main(string[] args)
        {
            string myNameValue = myName("MATHI KRISHNAN!");
            Console.WriteLine(myNameValue);
            Console.ReadLine();
        }

        // Methods - Used for reusing code blocks

        private static string myName(string name)
        {
            return string.Format("Hello,{0}", name);

        }
    }
}


Comments