博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
C#代码生成xml文档—C#基础回顾
阅读量:6573 次
发布时间:2019-06-24

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

  hot3.png

 

2.11.2

/*author:frankdatetime:2017-7-20 15:23:05注释xml标记,然后生成xml文件*/using System;//2.11.2.csnamespace Sample{	///	/// Sample.Program class.	/// Provides a method to add two integers	///	public class Program	{		///		///年龄		///		public int Age {get;set;}		///		///名字		///		private string _name;		///		/// 程序入口方法		///		///字符串数组参数		public static void Main(string[] args)		{			Program program = new Program();			program._name = "张三";			Console.WriteLine(program._name);		}		///		/// The Add method allows us to add two integers.		///		///
Result of the addition (int)
///First number to add ///Second number to add public int Add(int x,int y) { return x + y; } }}

2.11.2.xml

2.11.2
Sample.Program class. Provides a method to add two integers
名字
程序入口方法
字符串数组参数
The Add method allows us to add two integers.
Result of the addition (int)
First number to add
Second number to add
年龄

使用控制台示例命令:csc /t:library /doc:MathLibrary.xml MathLibrary.cs

转载于:https://my.oschina.net/Sadhu/blog/1486036

你可能感兴趣的文章
9.2. CentOS 区域设置
查看>>
命令行基本操作学习笔记(一)
查看>>
「试着读读 Vue 源代码」工程目录及本地运行(断点调试)
查看>>
Oracle——16用户、角色和权限
查看>>
从0实现NavigationController
查看>>
A Visual Git Reference
查看>>
Tomcat 关于表单提交数据量过大导致数据丢失的问题
查看>>
gitlab hook declined错误
查看>>
金融数据库
查看>>
翻了100个程序员的朋友圈, 发现个个都是套路王
查看>>
取消从上一界面push过来后,左上角的back按钮
查看>>
如何阅读别人的代码
查看>>
为什么 ++[[]][+[]]+[+[]] = 10?
查看>>
ContentProvider
查看>>
Redis 持久化存储
查看>>
Android 自定义GridView网格布局
查看>>
关于在帧中继fr环境下的NAT网络地址转换的实验
查看>>
大海捞枕木:大数据处理平台的衍变
查看>>
2015-郭辉-项目采购管理+文档配置管理
查看>>
基于 jQuery & CSS3 实现智能提示输入框光标位置
查看>>