博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
Export class type
阅读量:5113 次
发布时间:2019-06-13

本文共 1249 字,大约阅读时间需要 4 分钟。

C# API有这样的功能:

View Code
1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5  6 namespace ConsoleApplication5 7 { 8     abstract class Person 9     {10         private string _name;11         public string Name12         {13             get { return _name; }14         }15         16     }17     class Empoyee : Person18     {19        20 21     }22     class Janitor : Person23     {24       25     }26     class Program27     {28         static void Main(string[] args)29         {30             var people = new List
();31 people.Add(new Empoyee());32 people.Add(new Janitor());33 foreach (var item in people)34 {35 Console.WriteLine("Type {0}", item.GetType().Name);36 }37 Console.ReadKey();38 }39 }40 }

 

但是我们提倡这样做:The text用来update用户应该来自code本身,而不是来自什么build in framework。为了自由

View Code

比如Localization:

View Code
1 class Janitor : Person2     {3      。。。4         public override string TypeOfData5         {6             get {
return Internationlization.Translate(string Janitor);} 7 } 8 。。。9 }

 

 

转载于:https://www.cnblogs.com/shawnzxx/archive/2013/04/24/3040404.html

你可能感兴趣的文章
jdk环境变量配置
查看>>
安装 Express
查看>>
包含列的索引:SQL Server索引的阶梯级别5
查看>>
myeclipse插件安装
查看>>
浙江省第十二届省赛 Beauty of Array(思维题)
查看>>
NOIP2013 提高组 Day1
查看>>
个人对vue生命周期的理解
查看>>
cocos2dx 3.x simpleAudioEngine 长音效被众多短音效打断问题
查看>>
存储(硬件方面的一些基本术语)
查看>>
观察者模式
查看>>
Weka中数据挖掘与机器学习系列之基本概念(三)
查看>>
Win磁盘MBR转换为GUID
查看>>
大家在做.NET B/S项目的时候多用什么设技术啊?
查看>>
Java SE和Java EE应用的性能调优
查看>>
Android设计模式系列--原型模式
查看>>
免费的论文查重网站
查看>>
C语言程序第一次作业
查看>>
leetcode-Sort List
查看>>
中文词频统计
查看>>
了解node.js
查看>>