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

TestClass.cs « SampleClasses « mdoc.Test « mdoc - github.com/mono/api-doc-tools.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 443545962e824082a1f96fc6154ea10831f00d19 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
using System;
namespace mdoc.Test.SampleClasses
{
    public class TestClass
    {
        public TestClass () { }
        // private constructor
        TestClass (TestPrivateClass arg) { }

        // Unary Operators
		public static TestClass operator + (TestClass c1) { return new TestClass (); }
        public static TestClass operator - (TestClass c1) { return new TestClass (); }
        public static TestClass operator ! (TestClass c1) { return new TestClass (); }
        public static TestClass operator ~ (TestClass c1) { return new TestClass (); }
        public static TestClass operator ++ (TestClass c1) { return new TestClass (); }
        public static TestClass operator -- (TestClass c1) { return new TestClass (); }

        // Binary Operators
        public static TestClass operator + (TestClass c1, TestClass c2) { return new TestClass (); }
		public static TestClass operator - (TestClass c1, TestClass c2) {return new TestClass (); }
		public static TestClass operator / (TestClass c1, TestClass c2) { return new TestClass (); } 
        public static TestClass operator * (TestClass c1, TestClass c2) { return new TestClass (); }
		public static TestClass operator % (TestClass c1, TestClass c2) { return new TestClass (); }
        public static TestClass operator & (TestClass c1, TestClass c2) { return new TestClass (); }
        public static TestClass operator | (TestClass c1, TestClass c2) { return new TestClass (); }
        public static TestClass operator ^ (TestClass c1, TestClass c2) { return new TestClass (); }
        public static TestClass operator << (TestClass c1, int c2) { return new TestClass (); }
        public static TestClass operator >> (TestClass c1, int c2) { return new TestClass (); }

        // Comparison Operators
        public static bool operator true (TestClass c1) { return false; }
		public static bool operator false (TestClass c1) { return false; }
		public static bool operator == (TestClass c1, TestClass c2) { return true; }
		public static bool operator != (TestClass c1, TestClass c2) { return true; }
        public static bool operator < (TestClass c1, TestClass c2) { return true; }
        public static bool operator > (TestClass c1, TestClass c2) { return true; }
        public static bool operator <= (TestClass c1, TestClass c2) { return true; }
        public static bool operator >= (TestClass c1, TestClass c2) { return true; }

        // Conversion Operators
        public static implicit operator TestClassTwo (TestClass c1) { return new TestClassTwo (); }
        public static implicit operator TestClass (TestClassTwo c1) { return new TestClass (); }
        public static explicit operator int (TestClass c1) { return 0; }
        public static explicit operator TestClass (int c1) { return new TestClass (); }

        public void DoSomethingWithParams (params int[] values) { }
        public void RefAndOut (ref int a, out int b) { b = 1; }
	}
}