Показать сообщение отдельно
Старый 18.12.2015, 13:11   #1  
Blog bot is offline
Blog bot
Участник
 
25,644 / 848 (80) +++++++
Регистрация: 28.10.2006
mfp: X++ in AX7: Inline variable declarations
Источник: http://blogs.msdn.com/b/mfp/archive/...larations.aspx
==============
What would you pay to be able to do this in X++?

X++:
for(int i = 1; i  0)    
{
    int positiveInt = i;  
}
Or this:

X++:
if (applyInterestRate)
{
    real rate = this.getInterestRate();  
    result = result * rate;  
}  
if (applyExchangeRate) 
{  
    ExchangeRate rate = this.getExchangeRate();  
    result = result * rate.ExchangeRate;  
}



Finally, we can:
  • Declare variables close(r) to where they are used,
  • Variables are scoped by the block in which they are declared, and
  • Variable names can be reused in another scope.
The price: Join the ranks of AX7 developers!

Note: Whenever you consider using inline variable declarations – consider extracting the code into a smaller method instead. Here is why.



THIS POST APPLIES TO MICROSOFT DYNAMICS AX7 TECHNICAL PREVIEW; IS PROVIDED AS-IS AND CONFERS NO RIGHTS.




==============
Источник: http://blogs.msdn.com/b/mfp/archive/...larations.aspx
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.

Последний раз редактировалось mazzy; 18.12.2015 в 17:17.
За это сообщение автора поблагодарили: alex55 (1).