RemObjects
                        Software Gears code

C# to Oxygene

Sign in or create your account | Project List | Help

Issue 44: Constructors are left as named.

Reported by Jamie I, Apr 28, 2009

When converting a C# Class with a constructor eg:

	public class MyClass
	{
		public MyClass(string test)
		{
			this._message = test;
		}
	}

The Resulting Delphi Prism Constructor code is left named:

constructor MyClass.MyClass(test: String);
begin
  this._message := test
end;

This results in an error that constructors must be Nameless eg. 
constructor MyClass(test: String);

Comment 1 by Carlo Kok, Jun 8, 2009

Unable to reproduce
Status: Invalid
Owner: carlokok

Created: 1 year 3 months ago by Jamie I

Updated: 1 year 1 month ago

Status: Invalid

Owner: Carlo Kok

Labels:
Priority:Medium
Type:Defect