목록
반응형
전체 글 (
반응형
107)
개발꿈나무
노트북이 말을 안 들어서 기존에 설치되어 있던 VSCode에서 C# 개발공부를 하려고 했지만 WinForm을 지원해주지 않는 것 같길래 결국 Visual Studio를 설치했다,, 춍춍,, 노트북아 조금만 더 버텨줘,,,, 화이팅,,,,!!!! Windows 및 Mac용 Visual Studio 2019 다운로드 Visual Studio Community, Professional 및 Enterprise를 다운로드하세요. 지금 Visual Studio IDE, 코드 또는 Mac을 무료로 사용해 하세요. visualstudio.microsoft.com WinForm에서 계산기를 만들어보자 내일부터 만들어보자 오늘은 이만 퇴근 ^ㅇ^

20살, 뭣도 모르고 산 노트북은 RAM이 4GB였고,, 졸업작품 때문에 VSCode가 설치되어 있고,, Visual Studio를 또 설치하자니 노트북이 죽어날 것 같고,,, 그래서 VSCode로 C# 공부를 해보기로 했다,, 두구두구,,,, (사실 Visual Studio랑 VSCode의 차이점 잘 모름 ㅎㅅㅎ,,,) VSCode로 C# 개발환경 셋팅하기 1. VSCode download 우선 나는 VSCode가 이미 깔려있기 때문에 따로 설치하지는 않았지만 설치하고자 한다면 아래의 사이트에서 본인의 환경에 맞게 설치하면 된당 Download Visual Studio Code - Mac, Linux, Windows Visual Studio Code is free and available on your..

Blazor WebAssembly Project Blazor WebAssembly project 생성 Pages - Test.razor 파일 생성 @page "/test" @display @display @*@code { string display = $"..{1+2}...Test, URI(uniform), resource(content), identifier(HTTP)"; }*@ Pages - Test.razor.cs 파일 생성 - Test.razor 파일은 front, Test.razor.cs 파일은 back -> 실질적 코딩은 Test.razor.cs에서 namespace BlazorApp3.Pages; public partial class Test { string display = $"..{1 +..

깍두기의 하루,, Blazor Hosting mode 1. Server 2. Web Assembly ------ Server Hosting: Blazor Server Project 생성 Model coding: Data - WeatherForecast.cs 파일 수정 namespace DemoServer1.Data; public class WeatherForecast { public DateTime Date { get; set; } public int TemperatureC { get; set; } public int TemperatureF => 32 + (int)(TemperatureC / 0.5556); public string? Summary { get; set; } } // Modet -> DTO..

.Net 6.0 ->add Scaffole에서 ERROR: design 부분이 누락되었기 때문 Solution ==> Defendencies - NuGet Package Manager - 'Microsoft.EntityFrameworkCore.Design' Install HTML4 vs HTML5 - Cookie를 쓰느냐 안 쓰느냐(4: 쿠키 사용, 5: 쿠키 사용X) ----- ASP.NET Core Web API 1. Create Console Project 2. Create Web-Server Project in Solution(Console 프로젝트 위에 utility를 올림): DB를 하지만 UI를 뺐다고 생각 - ASP.NET Core Wep API 3. Person.cs 파일 생성 globa..
C# Lab SharpLab Code [connection lost, reconnecting…] sharplab.io data => primitive(integer: calculation) / non-primitive(string/struct/class/record) - Primitive(mutable): 계산 가능한 변수 (ex. integer) - Non-Primitive(immutable): 계산 불가능한 변수 (ex.string) Type: ValueType(primitive) / Reference(non-primitive) ----- Immutable object string strS = "Hello, World!"; // S: group object라는 의미 char ch = strS[0]; ..
반복문 //String group object //string strS = "Hello, World!"; //String - interpolation string strS = $"Hello, World! {1} {2}"; WriteLine(strS); // loof statement_CPU Service for(int i = 0; i < strS.Length; i++) { Write(strS[i]); } WriteLine(); int idx = 0; while (idx < strS.Length) { Write(strS[idx++]); } WriteLine(); // iterator statement_Collection(group object) Service // foreach: C# keyword(not..

1. Web Application - MVC 프로젝트 생성 2. Model - person class(Person.cs) 생성 using System; using System.Collections.Generic; using System.Linq; using System.Threading.Tasks; namespace webapplication1.Models { // POCO class(Plain Old CLR Object) [java에서는 POJO] // networkStream 방식1. json packet(C/S 방식) 2. service packet(일반적인 방법, Front-end/Back-end 방식) // NetworkStream에 service packet으로 보내기 위해 POCO class..

.Net 6.0 download Download .NET 6.0 (Linux, macOS, and Windows) .NET 6.0 downloads for Linux, macOS, and Windows. .NET is a free, cross-platform, open-source developer platform for building many different types of applications. dotnet.microsoft.com using System; using static System.Console; Person person = new(); //WriteLine(person.Age = 20} //mutable일 때 age 값 변경 WriteLine(person = person with {..

[RPA] RPA의 대표적인 Tool - Power Automate [RPA] RPA(Robotic Process Automation)란 ? RPA란 무엇인지 알아보자 어느 기업이든 비생산적이지만 매번 필수적으로 진행해야 하는 업무들이 존재한다. 이런 업무들을 사람이 매번 반복적으로 수행한다면 hyokye0ng.tistory.com 이전 포스팅에서 RPA가 무엇인지, 그리고 RPA의 대표적인 Tool에 대해 간단하게 알아보았다. 그리고 Power Automate 포스팅에서 말한 것 처럼 이번 포스팅에서는 Power Automate를 이용한 간단한 실습을 해 볼 것이다. 앞선 포스팅에서 Power Automate Desktop 설치 경로를 링크걸어 두었으니 참고하여 설치받고 5세용 Power Automat..