01 c cơ bản

34 1 0
01 c cơ bản

Đang tải... (xem toàn văn)

Tài liệu hạn chế xem trước, để xem đầy đủ mời bạn chọn Tải xuống

Thông tin tài liệu

Hướng đối tượng C# cơ bản Net framework 2 Mechanism 3 Hello world 4 Artifact Build => Error Run vs Run without debugging Release Debug Breakpoint & watch Step in & Step over Watch Set as startup proje[.]

C# .Net framework Mechanism Hello world Artifact     Build => Error Run vs Run without debugging Release Debug  Breakpoint & watch  Step in & Step over  Watch  Set as startup project  Open project location Types Variable int i; // Simple variable // Many variables can have the same type declaration float x, y, z; byte x = 1, y, z = 3; string name = "new name"; // Array: Indexed by an integer from Zero int x[] = {1, 2, 3}; // compile error int[] x = {1, 2, 3}; char[] y = new char[6]; // OK int x1 = x[0]; // // Multi dimension array: same size in all item int [,] x = {{1, 2}, {3, 4}}; int [,] x = {{1, 2}, {3, 4, 5}}; // compile error int x2 = x[1, 0]; // int [,,] x = {{{1, 2}, {3, 4}}, {{5, 6}, {7, 8}}}; Number casting // Smaller type in memory size integral // type to wider one byte b = 5; // implicit int to byte int i = b; // i = // Wider integral type to smaller one int i = 500; byte j = i; // compile error byte j = (byte)i; // i = 244 // No explicit conversion for floating // point number Boxing / Unboxing  Boxing: convert value type to object  Unboxing: extract value type from object Minimum & maximum value Result? 10 String as char array Faster! 20

Ngày đăng: 09/04/2023, 06:16

Tài liệu cùng người dùng

  • Đang cập nhật ...

Tài liệu liên quan