Hello,
I would like to use a lot of process which will use big numbers variable such as :
double.MaxValue
int.MaxValue
Is it will waste my memory when I do the process?
For simple example :
public class test{
int i;
public test(int inpI){
i = int.MaxValue - inpI
}
.....
.....
}
Sincerely Yours,
Pujo
I would like to use a lot of process which will use big numbers variable such as :
double.MaxValue
int.MaxValue
Is it will waste my memory when I do the process?
For simple example :
public class test{
int i;
public test(int inpI){
i = int.MaxValue - inpI
}
.....
.....
}
Sincerely Yours,
Pujo