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

28 lines
455 B
C#
Raw Normal View History

using System;
namespace cs2jTest.Various.Features
{
public class Various
{
public Various ()
{
}
public string TestRWProperty {get; set;}
public string get_TestRWProperty() {
return "hello";
}
private string _testROProperty = null;
public string TestROProperty {
get { return _testROProperty; }
}
private string _testWOProperty = null;
public string TestWOProperty {
set { _testWOProperty = value;}
}
}
}