Click here to Skip to main content
65,938 articles
CodeProject is changing. Read more.
Articles / Languages / C#

C# equivalent of VB's With keyword

4.92/5 (12 votes)
27 May 2011CPOL 18K  
You are introducing a variable “p” in the local scope of the whole function :snot really.. you know you can use brackets anywhere inside the code to define subscopes, don't you:{var p = this.StatusProgressBar;p.IsIndeterminate = false;p.Visibility = Visibility.Visible;p.Minimum =...
You are introducing a variable “p” in the local scope of the whole function :s
not really.. you know you can use brackets anywhere inside the code to define subscopes, don't you:

MIDL
{
var p = this.StatusProgressBar;
p.IsIndeterminate = false;
p.Visibility = Visibility.Visible;
p.Minimum = 0;
p.Maximum = 100;
p.Value = percentage;
}

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)