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