C# 部分类 密封类

  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _06部分类  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.         }  
  14.     }  
  15.   
  16.     public partial class Person  
  17.     {  
  18.         private string _name;  
  19.         public void Test()  
  20.         {   
  21.               
  22.         }  
  23.     }  
  24.   
  25.     public partial class Person  
  26.     {  
  27.         public void Test(string name)  
  28.         {   
  29.            // _name  
  30.         }  
  31.     }  
  32. }  
  1. using System;  
  2. using System.Collections.Generic;  
  3. using System.Linq;  
  4. using System.Text;  
  5. using System.Threading.Tasks;  
  6.   
  7. namespace _07密封类  
  8. {  
  9.     class Program  
  10.     {  
  11.         static void Main(string[] args)  
  12.         {  
  13.   
  14.         }  
  15.     }  
  16.   
  17.     public sealed class Person:Test  
  18.     {   
  19.           
  20.     }  
  21.   
  22.     public class Test  
  23.     {   
  24.           
  25.     }  
  26. }  
shashou47

发表评论

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen: