File: operations.cs

package info (click to toggle)
dia2code 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 6,384 kB
  • sloc: cpp: 8,163; sh: 4,280; php: 289; cs: 267; java: 219; makefile: 49; ansic: 38
file content (20 lines) | stat: -rw-r--r-- 538 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
public class operations {
    // Operations
    /// <summary>comment</summary>
    /// <param name="in">(in)</param>
    /// <param name="inOut">(in/out) comment2</param>
    /// <param name="undef">(???)</param>
    /// <param name="out">(out)</param>
    /// <returns>type</returns>
    private abstract type test (type1 in, type2 inOut, type3 undef = 0, type4 out);
    /// <summary>comment2</summary>
    public virtual static test2 () {
    }
    public test3 () {
    }
    protected test4 () {
    }
    public test5 () {
    }
}