파일 목록
-
📁 10
-
📁 3
-
📁 4
-
📁 4-minicalc
-
📁 7
-
📁 parking manager
- 2.cs
- desktop.ini
- Title.png
- 객체지향 3대 특징(+1).txt
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.IO;
using System.Linq;
using System.Net.Sockets;
using System.Text;
using System.Threading.Tasks;
namespace Week11_1
{
internal class Program
{
static void Main(string[] args)
{
Child child = new Child();
child.GetMyName();
child.GetMyAge();
ClassA parent = (ClassA)child;
parent.GetMyName();
parent.GetMyAge();
FileStream fs = new FileStream();
NetworkStream ns = new NetworkStream();
MemoryStream ms = new MemoryStream(); //Stream 데이터가 흐르는 걸 스트리미이라 함
//데이터가 오가는 가상의 길 -> 가상의 통신선에 바이트단위로 흘려보내주는 것
//printf scanf 다 스트림 씀 파일전송 역시 전부 포함
}
}
}