목표:다음 소스 코드가 실행되었을 때 창 제목에 asdf1234가 적혀있게 하기.using System;using System.Collections.Generic;using System.Linq;using System.Threading.Tasks;using System.Windows.Forms;namespace WinForm481{ internal static class Program { [STAThread] static void Main() { Console.WriteLine(typeof(Form).Assembly.Location); Application.EnableVisualStyles(); A..