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

InternalEIICalss.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: b2d848e9406f221e75ec03bf43684e641de2c77d (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
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using mdoc.Test.SampleClasses;

namespace mdoc.Test2
{
    public class InternalEIICalss : InterfaceA
    {
        public InternalEIICalss()
        { }

        public string Getstring(int a)
        {
            return a.ToString();
        }

        string InterfaceA.Getstring(int a)
        {
            return "";
        }

        string InterfaceA.color { get { return "Red"; } }
    }
}