Warning: session_start(): open(/tmp/sess_2e0554a681f89df6477c7679810a45bb, O_RDWR) failed: No space left on device (28) in /var/www/html/qa-include/app/users.php on line 162

Warning: session_start(): Failed to read session data: files (path: ) in /var/www/html/qa-include/app/users.php on line 162
Các lỗi thường gặp trên các dự án C# - Qtsd Q&A
+4 votes
in .NET Core by (630 points)
retagged by

1 Answer

+1 vote
by (630 points)
  1. Lỗi data NULL “object reference not set to an object instance”

=> Khi viết code cần chú ý những đoạn code có thể null

Ví dụ:

Không nên

Nên (sử dụng C# 6)

int a = item.Number.Value;


 

int a = item.Number ?? 0;


 
Welcome to Qtsd Q&A, where you can ask questions and receive answers from other members of the community.
...