Invalid variable names in generated constructor with --public flag #4

Closed
opened 2016-07-16 10:58:03 +00:00 by sbrl · 1 comment
Owner

Example of problem:

using System;

class SpecialFileEntry 
{
	public string FileName;
	public string ContentType;
	

	public SpecialFileEntry(string inFileName, string inContentType)
	{
		fileName = inFileName;
		contentType = inContentType;
	}
}
Example of problem: ``` using System; class SpecialFileEntry { public string FileName; public string ContentType; public SpecialFileEntry(string inFileName, string inContentType) { fileName = inFileName; contentType = inContentType; } } ```
sbrl closed this issue 2016-07-25 18:22:35 +00:00
Author
Owner

Fixed.

Fixed.
Sign in to join this conversation.
No Milestone
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: sbrl/cscz#4
No description provided.