.NET Decompiler with support for PDB generation, ReadyToRun, Metadata (&more) - cross-platform!
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

59 lines
1.0 KiB

//
// doc-bootstrap.cs: Stub support for XML documentation.
//
// Author:
// Raja R Harinath <rharinath@novell.com>
//
// Dual licensed under the terms of the MIT X11 or GNU GPL
//
// Copyright 2004 Novell, Inc.
//
//
#if BOOTSTRAP_WITH_OLDLIB || NET_2_1
using XmlElement = System.Object;
namespace Mono.CSharp {
public class DocUtil
{
internal static void GenerateTypeDocComment (TypeContainer t, DeclSpace ds, Report r)
{
}
internal static void GenerateDocComment (MemberCore mc, DeclSpace ds, Report r)
{
}
public static string GetMethodDocCommentName (MemberCore mc, ParametersCompiled p, DeclSpace ds)
{
return "";
}
internal static void OnMethodGenerateDocComment (MethodCore mc, XmlElement el, Report r)
{
}
public static void GenerateEnumDocComment (Enum e, DeclSpace ds)
{
}
}
public class Documentation
{
public Documentation (string xml_output_filename)
{
}
public bool OutputDocComment (string asmfilename, Report r)
{
return true;
}
public void GenerateDocComment ()
{
}
}
}
#endif