Visual C# 01 - How to open text file into textbox

preview_player
Показать описание
This example will show how to open and read text file in Visual Studio using C#. We will contruct OpenFileDialog object and use it to get text file contents into textbox field.
=====================================
=====================================
Рекомендации по теме
Комментарии
Автор

Thanks, and if 'StreamReader' isn't popping up for some of you, at the top where is says
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;"
-
Add a line and type using System.IO;
then is should look like
using System.IO;
i hope that helps.

jaysgarage
Автор

Your application internally calls NtCreateFile and NtReadFile from ntdll.dll !!

alexandervogtsanchez