C#演示如何使用 XML 将源码编入文档

2021-06-22 10:05

阅读:397

标签:sys   如何   rgs   记录   The   eth   ==   void   other   

工作闲暇时间,将做工程过程中常用的代码段记录起来,下面的代码是关于C#演示如何使用 XML 将编入文档的代码,希望对大伙有较大帮助。


using System;

public class SomeClass
{
private string myName = null;

public SomeClass()
{
}

public string Name
{
get
{
if ( myName == null )
{
throw new Exception("Name is null");
}

return myName;
}
}

public void SomeMethod(string s)
{
}

public int SomeOtherMethod()
{
return 0;
}

public static int Main(String[] args)
{

return 0;
}
}



 

C#演示如何使用 XML 将源码编入文档

标签:sys   如何   rgs   记录   The   eth   ==   void   other   

原文地址:https://www.cnblogs.com/SHUN019/p/10213955.html


评论


亲,登录后才可以留言!