加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
Program.cs 1.32 KB
一键复制 编辑 原始数据 按行查看 历史
reyas 提交于 2023-05-04 14:55 . 练习
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
// 表达式 - 得到的结果可以是方法 - 委托 = 函数指针
namespace test_5_4
{
internal class Program
{
static void Main(string[] args)
{
//int x = 10;
//int[] Array = new int[5] { 1, 2, 3, 4, 5 };
//Type t = typeof(int);
//Console.WriteLine(t);
new Student();
Student student = new Student();
var a = new { Name = "zhangsan", Age = 34 };
}
}
class Student
{
public static int Amount;
public int ID;
public string Name;
public double Add(double x, double y)
{
return (x + y);
}
public double Sub(ref double x,ref double y)
{
return x - y;
}
public void Mul(out double result,double x, double y)
{
result = x * y;
}
public double Div(double x, double y)
{
return x / y;
}
public int Div(int x ,int y)
{
return x / y;
}
public double Div(double x, double y, double z)
{
return x / y;
}
}
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化