Sign in to reply to this comment.
|
Sign in or create your account | Project List | Help
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
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);