Multiple choice technology programming languages C++ uses pointers. Choose the one which is not TRUE about C Sharp. Pointers are not supported in C# Pointers are supported in C# as is in C++ Pointers are replaced by delegates Pointers can be used by declaring unsafe blocks Reveal answer Fill a bubble to check yourself D Correct answer Explanation C# does support pointers, but only within explicitly marked unsafe code blocks. This provides controlled access to pointer functionality while maintaining type safety by default, unlike C++ where pointers are freely available.