I have to use Progress Openedge Architect in my work, and I need to convert some C# code to ABL code (ABL is the language name). So I need to find how to decorate my classes, properties and methods with .NET attributes. I searched through this guide ( http://documentation.progress.com/output/OpenEdge102b/pdfs/dvngm/dvngm.pdf ) but there is no mention about decoration in the C# to ABL mapping section.
A simple C# example:
[global::System.Configuration.UserScopedSettingAttribute()]
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
[global::System.Configuration.DefaultSettingValueAttribute("9.75")]
public decimal POLICE {
get {
return ((decimal)(this["POLICE"]));
}
set {
this["POLICE"] = value;
}
}
Thanks for any help on this!
Kind regards,
Gabriel