doc-bootstrap.cs

来自「C#编译器源代码。Micorsoft开放源代码」· CS 代码 · 共 60 行

CS
60
字号
//// doc-bootstrap.cs: Stub support for XML documentation.//// Author://	Raja R Harinath <rharinath@novell.com>//// Licensed under the terms of the GNU GPL//// (C) 2004 Novell, Inc.////#if BOOTSTRAP_WITH_OLDLIBusing XmlElement = System.Object;namespace Mono.CSharp {	public class DocUtil	{		internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds)		{		}		internal static void GenerateDocComment (MemberCore mc, DeclSpace ds)		{		}		public static string GetMethodDocCommentName (MethodCore mc, DeclSpace ds)		{			return "";		}		internal static void OnMethodGenerateDocComment (MethodCore mc, DeclSpace ds, XmlElement el)		{		}		public static void GenerateEnumDocComment (Enum e, DeclSpace ds)		{		}	}	public class Documentation	{		public Documentation (string xml_output_filename)		{		}		public bool OutputDocComment (string asmfilename)		{			return true;		}		public void GenerateDocComment ()		{		}	}}#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?