18._3分部类概述及其使用

Posted 前缘

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了18._3分部类概述及其使用相关的知识,希望对你有一定的参考价值。

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

namespace _18._3分部类概述及其使用
{

    partial class atithmetic //阶乘
    {
        public int factorial(int num)
            {
            int factorial = 1;
        for(int i =num;i>0;i--)
            factorial*=i;
            return factorial;
            }
    }


    partial class atithmetic //平方
    {
        public int square(int num)
        {
            return num * num;
        }
    }
    class Program
    {
        static void Main(string[] args)
        {
            atithmetic a = new atithmetic();
            int num = 5;
            Console.WriteLine("调用分部类的第一部分:{0}",a.factorial(num));
            Console.WriteLine("调用分部类的第二部分:{0}",a.square(num));
            Console.Read();
        }
    }
}

 

以上是关于18._3分部类概述及其使用的主要内容,如果未能解决你的问题,请参考以下文章

C#练习笔记3:分部类分部方法,索引结合异常的使用

Java学习笔记3.8.2 内部类 - 局部内部类

分部类和分部方法

分部类

分部类

c++基础_ new, delete概述及其使用!!