Saturday, February 11, 2012

#region question in vb.net

What are the benefits of using
#region
...
# end region
in our programming languages like vb.net.
Why we use this block?

please tell me if any person know

thanking you

Keep in Touch


It lets you expand and collapse that region of code in development environments such as Visual Studio. Some people also use it to group class members. That's it, it doesn't affect the behavior of your code in any way.

No comments:

Post a Comment