C#基础学习之三 枚举 和方法重载

using  System;
using  System.Collections.Generic;
using  System.Text;

namespace  Color
{
    
class Program
    
{
        
static void Main(string[] args)
        
{
            Color cc 
= Color.Red;
            System.Console.WriteLine(
"The " + cc.GetType() + " type is drived from " + cc.GetType().BaseType);
//第一种方法参数是int类型 传输一个数字1
            method1(1);
//第二种方法是重载了的类型是Color
            method1(cc);

            Color cs 
= Color.Red;
            System.Console.WriteLine(
"Does cc equals cs: " + cc.Equals(cs));

            
switch (cs)
            
{
                
case Color.Red:
                    System.Console.WriteLine(
"the color is " + cs);
                    
break;
                
case Color.Green:
                    System.Console.WriteLine(
"the color is " + cs);
                    
break;
                
case Color.Blue:
                    System.Console.WriteLine(
"the color is " + cs);
                    
break;
                
default:
                    System.Console.WriteLine(
"should never come here");
                    
break;
            }

        }

        
public enum Color {
            Red,
            Green,
            Blue
        }

        
public static void method1(int i)
        
{
            System.Console.WriteLine(i);
        }

        
public static void method1(Color c)
        
{
            System.Console.WriteLine(c);
        }


    }

}
 
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值