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

Interface_A.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f1ab3a2a2976abfb20521ace3542b2e2c583c76d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;

namespace mdoc.Test2
{
    public interface Interface_A
    {
        string color { get; set; }
        int  no  { get;  }
        string GetNo();
        int GetNum();
        event EventHandler<EventArgs> ItemChanged;
    }
}