Monday, November 9, 2009

IS203 Лекц 3 - Демо

CInt  CDbl  CStr

Convert.____________
        | ToInt32  |
        | ToString |
        | ToDouble |

http://msdn.microsoft.com

Lecture 3

Visual Basic 6:  Integer
Visual C++ 6:       int
Java:    int

.NET         Int32

C#.NET    int
VB.NET    Integer

Student s1 = new Student("Bat",20,"SW07D007");
Student s2;

s2 = s1.Clone();

s2.Name = "Gee";
s2.Age = 27;
-------------

int x = 5;

int y = x;

x = 7;

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

No comments:

Post a Comment