Is there a way in flex (Flash Builder 4) to make regions like in c#, to group a part of the code allowing us to collapse it and see through our project more easily?
In c# it's like:
#region exammple
// my funtions I want to group
#endregion
Is there a way in flex (Flash Builder 4) to make regions like in c#, to group a part of the code allowing us to collapse it and see through our project more easily?
In c# it's like:
#region exammple
// my funtions I want to group
#endregion
Not that I have seen. I have only found comment and function collapsing.
No, you basically have to use comments. I generally do something like
// *********************** THIS REGION IS FOR ... *************************