1
0
mirror of https://github.com/twiglet/cs2j.git synced 2025-01-18 13:15:17 +01:00
2010-11-01 13:54:23 +01:00

66 lines
1.3 KiB
C#

using System;
namespace cs2jTest.Various.Features.join.yield
{
// delegate declaration
public delegate string MyDelegate(int i);
public class Various
{
public Various ()
{
}
public const int MY_IMPORTANT_INT = 23;
public const String MY_IMPORTANT_STRING = "Kevin";
private int myInt = 0;
private System.Collections.Generic.IDictionary<int,short> myDict;
public string TestRWProperty {get; set;}
public string get_TestRWProperty() {
return "hello";
}
public string testgen<T>(T i) {
return "hello";
}
private string _testROProperty = null;
public string TestROProperty {
get { return _testROProperty; }
}
private string _testWOProperty = null;
public string TestWOProperty {
set { _testWOProperty = value;}
}
public static explicit operator Various(int i)
{
return new Various();
}
public static implicit operator Various(string i)
{
return new Various();
}
public static explicit operator bool(Various v)
{
return true;
}
public static implicit operator string(Various v)
{
return "Various";
}
public static Various operator ++(Various v) {
Various temp = new Various();
temp.myInt = v.myInt+1;
return temp;
}
}
}