1、      int i=12345; 
       this.textBox1.Text=i.ToString();
         //结果 12345(this指当前对象,或叫当前类的实例)
       this.textBox2.Text=i.ToString("d8"); 解释一下这条语句和上一条语句的区别,详细一些谢谢
         //结果 000123452、      int i=123;
    double j=123.45;
string s1=string.Format("the value is {0,7:d}",i);解释一下这条语句
string s2=string.Format("the value is {0,7:f3}",j);
this.textBox1.Text=s1 ;
         //结果 the value is     123
this.textBox2.Text=s2;
         //结果 the value is 123.450 
3、大概的阐述一下有关“堆栈”的基础知识。新手,比较菜,麻烦各位解释的明白详细一些,谢谢各位O(∩_∩)O~