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

Interface1.cs « TestInterfaceImplementation « Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 8b62d3d38257007f193d449851a022c271772993 (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
26
27
28
29
30
31
32
33
34
using System;

namespace TestInterfaceImplementation
{
    public interface Interface1
    {
        #region Methods
        void Method1();
        Interface1 Method2();
        #endregion

        #region Properties
        int Property1 { get; }
        int Property2 { get; set; }
        #endregion

        #region Events
        event EventHandler Event1;
        event EventHandler<EventArgs> Event2;
        #endregion

        #region Indexers
        int this[int index]
        {
            get;
        }

        int this[float index]
        {
            get; set;
        }
        #endregion
    }
}