Click here to Skip to main content
15,885,914 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
Declaring the integer x and initialize it to zero will solve this question ,but i need to assume the user did not initialize the variable x
the visual studio keeps telling the variable is not assigned
i wish if i could pass this if statement if(x !=null) MessageBox.Show("you can continue ");

What I have tried:

private void button1_Click(object sender, EventArgs e)
{
    int x;
    //string ss = x.ToString();
    //x=0;  //<=== this is one solution but i have to assume the user did not wrote this line
    try
    {
        //x++;
        if(x !=null) MessageBox.Show(" you can continue");
        //if (x.Equals(null)) MessageBox.Show("x is null");
        //if(ss==null) MessageBox.Show("x is null");
    }
    catch (Exception ex)
    {
        MessageBox.Show(" x is not initialized ");
    }
}
Posted
Updated 28-Nov-21 5:06am
Comments
Richard MacCutchan 28-Nov-21 9:03am    
That makes no sense; the user has no control over the contents of the application's variables. And declaring a local variable without a value means that its contents are not guaranteed to be anything. That is why the compiler gives you a warning.
Engineer khalid 28-Nov-21 9:51am    
look at this c++ code
int x,*p,**q;
x=10;
p=&x;//address of x is saved in pointer p
q=&p;//the value in the pointer p (means the value of x ) is saved in q
// so the following line is worth to try
if(q !=null) continue;

could i attach the c++ code above in my c sharp code ?
or
could any one translate the c++ code above to c sharp ?
Richard MacCutchan 28-Nov-21 9:57am    
No, because it still makes no sense. Those values are effectively set by the compiler and will be as coded immediately your application runs, so p and q can never be null. But even if they were set to null it still does not tell you anything useful.

And no one can provide you with "equivalent" code because, as we keep telling you, that code does not do anything useful. If you want to get a value from the user then you need to use a Dialog or similar control.
Engineer khalid 28-Nov-21 10:31am    
The following comment might help other member who might fall into this kind of problem
it also worth to keep this note in my page .I might forget it after some time
I am codding a program that read and explain (in sound) a program for pic (assembly) all Register has to be positive(as far as i know) so i initialize all register to negative (-1) if however the user did not initialize the register that means its value is negative (-1) so i intercept that in
if(Register==-1) MessageBox.Show("Error","the register "+register+" must be initialized");
Richard MacCutchan 28-Nov-21 10:53am    
But this is exactly the same issue. How can the user initialise the values in the registers when they have no access except through your program?

x will never be null, it's a valuetype.
Value Type vs Reference Type in C#[^]

And the user will not be able to write any line in your private method, since (s)he will just be executing your compiled code; so it's up to you to ensure that this variable has been given a meaningful value.
 
Share this answer
 
Tp add to what Phil and Richard have said ...

In C#, all variables must explicitly be given a value before they are used: if there is any path through code between the declaration of a variable and iit's usage, the compiler will complain - even if that route is impossible to follow in the "real world".

C++ is not so ... accurate, and because it uses pointers which are deliberately much harder to use in C# it is possible to write code like this:
C++
int x;
int *p = &x;
*p = 10;
int y = x;
The mechanics of what is going on means that it is impossible to get to the final line without assigning a value to x indirectly. C# doesn't allow that, so even if you could "translate" the C++ code directly to C# the compiler still wouldn't like it.

In C# you must explicitly give a variable a value before you use it.
 
Share this answer
 

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



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900