Showing posts with label Boxing. Show all posts
Showing posts with label Boxing. Show all posts
Sunday, July 16, 2017
ฺBoxing vs Unboxing ต่างกันตรงไหน
Boxing คือการแปลง value type ให้เป็น reference type เช่น
int i = 123;
Object o = (Object)i;
Unboxing คือการแปลง reference type เป็น value type เช่น
int d;
d = DateTime.Now.Day;
Subscribe to:
Posts (Atom)
เชื่อม SQL Server บน VMWare ผ่าน SQL Server Management Studio ที่เครื่อง Client
หากติดตั้ง SQL Server ต่างเครื่องคอมพิวเตอร์ที่เราต้องการ Develop จะต้อง Set ค่าเพิ่มเติมผ่าน SQL Server Configuration Server ด้วย เพราะไม...