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分部类概述及其使用的主要内容,如果未能解决你的问题,请参考以下文章