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

DocTest-frameworkalternate.cs « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 092f8ca6576b8e5546e5deb6462471a1c24042a0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
using System;

namespace Monodoc.Test 
{
    public class FirstAttribute : Attribute {}
    public class SecondAttribute : Attribute {}
    public class MyClass
    {
        #if FXONE
        [First]
        public void Meth(int a, string b, int c) {}
        #endif

        #if FXTWO
        [First, Second]
        public void Meth(int a, string d, int c) {}
        #endif
    }
}