Eski bir web tarayıcısı kullanıyorsunuz. Bu veya diğer siteleri görüntülemekte sorunlar yaşayabilirsiniz.. Tarayıcınızı güncellemeli veya alternatif bir tarayıcı kullanmalısınız.
using System;
using System.IO;
class FileDeleter
{
static void Main(string[] args)
{
// specify the file path
string filePath = @"C:\example\myfile.txt";
try
{
// attempt to delete the file
File.Delete(filePath)...