Guest User

Untitled

a guest
Nov 19th, 2017
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. public class ConstantGeneral
  2. {
  3. public const int Active = 1;
  4. public const int NoneActive = 0;
  5. }
  6.  
  7. public class HomeController : Controller
  8. {
  9. int _active = ConstantGeneral.Active;
  10. int _nonactive = ConstantGeneral.NoneActive;
  11. int _active1 => ConstantGeneral.Active;
  12. int _nactive1 => ConstantGeneral.NoneActive;
  13. }
Add Comment
Please, Sign In to add comment