14 lines
304 B
C#
14 lines
304 B
C#
|
using System.Text;
|
|||
|
|
|||
|
using Mono.Cecil;
|
|||
|
|
|||
|
namespace Mono.Documentation.Updater
|
|||
|
{
|
|||
|
public class CSharpMemberFormatter : CSharpFullMemberFormatter
|
|||
|
{
|
|||
|
protected override StringBuilder AppendNamespace (StringBuilder buf, TypeReference type)
|
|||
|
{
|
|||
|
return buf;
|
|||
|
}
|
|||
|
}
|
|||
|
}
|