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

DocTest-TypeProjection.cs « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e20829f18663e8aa1366cea33f7ceb8ef91bfa8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;

namespace Mono.DocTest
{

    public class GenericType<T>
    {
        public GenericType<T> TestMethodA(GenericType<T> A)
        {
            return A;
        }
    }

    public class NonGenericType
    {
        public NonGenericType TestMethodB(NonGenericType B)
        {
            return B;
        }
    }

}