Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Extending the scope of a variable
Message
 
 
To
22/05/2009 14:42:25
General information
Forum:
ASP.NET
Category:
Forms
Environment versions
Environment:
C# 2.0
OS:
Windows XP SP2
Network:
Windows 2003 Server
Miscellaneous
Thread ID:
01401587
Message ID:
01401588
Views:
69
This message has been marked as the solution to the initial question of the thread.
>Hi All,
>
>Given the following code
>
>                CSite site; //variable declaration
>
>                while ((input = sr.ReadLine()) != null)
>                {
>                    if (input.StartsWith("["))
>                    {
>                        site = new CSite();  //variable instantiation
>                        input = input.TrimStart('[');
>                        input = input.TrimEnd(']');
>                        site.SiteName = input;
>                        site.NodeType = CApplication.NodeType.Site;                        
>                    }
>                    if (input.StartsWith("Address"))
>                        site.SiteAddress = input.Substring(8);  // **ERROR
>                    if (input.StartsWith("DESCRIPTION"))                        
>                        site.SiteDescription = input.Substring(12);  //**ERROR
>
>
>
>This compiles with the error "use of unassigned local variable site" and refers to the site in the second two if statements. My question is how can I extend the scope of site in the first if block to those of the second two if blocks?

Can you try

CSite site = null; //variable declaration

instead?

You need to initialize the site variable with something. Also in your checks you may also check for site!=null
If it's not broken, fix it until it is.


My Blog
Previous
Next
Reply
Map
View

Click here to load this message in the networking platform