using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace _1025_作業繳交
{
//class Ex1
//{
// static public void ex1()
// {
// Console.WriteLine("EX1");
// Console.Read();
// }
//}
public class Ex1
{
using (Ex1 ex1=new Ex1())
public void ex1(int x,int y)
//静态方法不能直接使用本类的非静态方法
{
//int EX1= Show();
// }
//public int Callbaby()
//{
int EX1a = Max(x,y);
//從 EX1 倒推回去
//Console.WriteLine(EX1a);
//Console.Read();
//int EX1a[] = new int[3];
//return EX1a;
//Console.WriteLine(Callbaby.EX1);
//Object EX1 = new Object();
//EX1 = EX1a.ToString();
//Console.WriteLine(EX1);
Console.WriteLine(EX1a.ToString());
Console.Read();
}
public int Max(int X, int Y)
{
return (X > Y) ? X : Y;
}
}
//class Ex1
//{
// static public void ex1()
// {
// Clac EX1b = new Clac ();
// Console.WriteLine(EX1a);
// Console.Read();
// }
//}
//class Class1
//{
// public static void OtherM()
// //程式只能有一個 Main 方法。
// {
// Ex1 Obj = new Ex1();
// Obj.Show();
// }
//}
}
沒有留言:
張貼留言