Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiao Luo <basehello@icloud.com>2021-04-14 18:20:54 +0300
committerGitHub <noreply@github.com>2021-04-14 18:20:54 +0300
commit806f222aad9a217efc587776915ffba95f92a20f (patch)
tree3f0aa84640e4c842a92aa3744b7f836d2282cb87 /mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs
parent38d866cbbf3eb19b0a1a523153a3303a9ac2b1f3 (diff)
Improve argument value formatter (#539)
https://dev.azure.com/ceapex/Engineering/_workitems/edit/366340
Diffstat (limited to 'mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs')
-rw-r--r--mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs29
1 files changed, 0 insertions, 29 deletions
diff --git a/mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs b/mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs
deleted file mode 100644
index 0db9b6da..00000000
--- a/mdoc/Mono.Documentation/Updater/ResolvedTypeInfo.cs
+++ /dev/null
@@ -1,29 +0,0 @@
-
-using Mono.Cecil;
-
-namespace Mono.Documentation.Updater
-{
- class ResolvedTypeInfo
- {
- TypeDefinition typeDef;
-
- public ResolvedTypeInfo (TypeReference value)
- {
- Reference = value;
- }
-
- public TypeReference Reference { get; private set; }
-
- public TypeDefinition Definition
- {
- get
- {
- if (typeDef == null)
- {
- typeDef = Reference.Resolve ();
- }
- return typeDef;
- }
- }
- }
-} \ No newline at end of file