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

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

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


    }
}