Click here to Skip to main content
15,888,286 members
Articles / Programming Languages / C#
Alternative
Tip/Trick

C# equivalent of VB's With keyword

Rate me:
Please Sign up or sign in to vote.
4.92/5 (12 votes)
27 May 2011CPOL 17K   4   5
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)


Written By
Software Developer
Portugal Portugal
From the age of 15 I started programing in QBasic at home after several jobs I realized that what I wanted was to work with computers, so I joined a IT company, originally as a web designer, but thanks to my self learning abilities I made my way into the programmers team. Today I know VB, VBScript, Javascript, HTML, SQL , C# and C++... even if I never went to college.. Smile | :)

Comments and Discussions

 
QuestionOnly works for reference types! Pin
Andreas Gieriet20-Mar-13 4:37
professionalAndreas Gieriet20-Mar-13 4:37 
GeneralSorry for my bad english. I'm trying to use this tip and I g... Pin
José Temporini (Member 2969596)16-Feb-12 11:42
José Temporini (Member 2969596)16-Feb-12 11:42 
GeneralRe: the "var" keyword only exists in c# 3.0.. you are probably u... Pin
CaldasGSM16-Feb-12 22:52
CaldasGSM16-Feb-12 22:52 
GeneralReason for my vote of 5 Simple and efficient Pin
John Brett6-Jan-12 4:49
John Brett6-Jan-12 4:49 
GeneralReason for my vote of 5 I think it is the best way to do it.... Pin
Philippe Mori31-May-11 12:45
Philippe Mori31-May-11 12:45 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.