We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi My class
name MyNamespace { public class MyClass { #region Constants. public const string DefaultLanguage= "English"; public const string AllowedArea = "index.html" #endregion } }
When run through the tool, comes out as:
declare module MyNamespace { // MyNamespace\MyClass.cs export interface MyClass{ } }
How to gain this output please:
namespace MyNamespace { // MyNamespace\MyClass.cs export class MyClass { public static DefaultLanguage: string = "English"; public static AllowedArea: string = "index.html" } }
Thank you for your help in this.
Kind Regards Fawad
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi
My class
When run through the tool, comes out as:
How to gain this output please:
Thank you for your help in this.
Kind Regards
Fawad
The text was updated successfully, but these errors were encountered: