예제 #1
0
        private void button1_Click(object sender, EventArgs e)
        {
            Mark m = new SMark("Hello");//lightweight value type instead of a ref type.

            m.testThis();
        }
예제 #2
0
파일: Form1.cs 프로젝트: ChrisPaine/C-sharp
 private void button1_Click(object sender, EventArgs e)
 {
     Mark m = new SMark("Hello");//lightweight value type instead of a ref type.
     m.testThis();
 }