Monday, November 9, 2009

VSM Лекц - Notepad notes 2

Class Student
{
    private double GPA;
Public Property PropGPA
{
    Set_GPA(double d1)
    {
       this.GPA = d1;

    }
    Get_GPA()
    {
       return this.GPA
    }
}

}

Student s1 = new Student();

s1.Set_GPA(3.3);

Double d = s1.Get_GPA();

s1.PropGPA = 3.3;


d = s1.PropGPA;

Ч. Эрдэнэбат
2009-11-9

No comments:

Post a Comment