# Tìm lỗi: .NET > Một đoạn mã. Tìm ra lỗi, hoặc chứng minh là không có lỗi nào. Thử thách hàng ngày: 2026-08-19 (UTC) · Senior ```csharp using System.Collections.Generic; public class RequestCounter { private readonly Dictionary _counts = new(); private readonly object _lock = new(); public void Increment(string endpoint) { lock (_lock) { if (!_counts.ContainsKey(endpoint)) _counts[endpoint] = 0; _counts[endpoint]++; } } public int GetCount(string endpoint) { return _counts.TryGetValue(endpoint, out var count) ? count : 0; } } ``` ## Phán quyết của bạn - Lỗ hổng bảo mật - Lỗi logic - Phong cách mã - Không có vấn đề Một lần thử mỗi ngày. Đáp án hiện ra ngay sau đó. --- Source: SharpSkill (https://sharpskill.dev), tech interview preparation for your real stack. HTML version of this page: https://sharpskill.dev/vi/thu-thach-hang-ngay/dotnet