⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 program.cs

📁 这是.net2005学习不可缺少的教程
💻 CS
字号:
using System;
class Method
{
    public static int Add(int i, int j)
    {
        return (i + j);

    }
    public static string Add(string s1, string s2)
    {
        return (s1 + s2);

    }

    public static string Add(string s1, int b)
    {
        return (s1 + b.ToString());

    }
    public static int Main()
    {
        Console.WriteLine("{0}", Add(1, 2));
        Console.WriteLine("{0}", Add("1", "2"));
        Console.WriteLine("{0}", Add("1", 2));

        return 0;
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -