Skip to main content
Fixed grammar
Source Link
Appulus
  • 18.8k
  • 11
  • 38
  • 46

There is a gotcha with consts! If you reference a constant from otheranother assembly it's, its value will be compiled right into the calling assembly. That way when you update the constant in the referenced assembly it won't change in the calling assembly!

There is a gotcha with consts! If you reference constant from other assembly it's value will be compiled right into calling assembly. That way when you update constant in referenced assembly it won't change in calling assembly!

There is a gotcha with consts! If you reference a constant from another assembly, its value will be compiled right into the calling assembly. That way when you update the constant in the referenced assembly it won't change in the calling assembly!

Source Link
aku
  • 123.4k
  • 33
  • 174
  • 203

There is a gotcha with consts! If you reference constant from other assembly it's value will be compiled right into calling assembly. That way when you update constant in referenced assembly it won't change in calling assembly!