Development/C#, Xamarin(122)
-
C# Tips
C# Tips http://csharp.tips/
-
C# News Aggregator
C# News Aggregatorhttp://csharp.news/
-
객체 복사하기 - 얕은 복사, 깊은 복사, 얕은 복사 vs 깊은 복사
객체 복사하기객체를 복사하는 방법에는 얕은 복사와 깊은 복사가 있습니다. 얕은 복사 static void Main(string[] args) { //원본 객체와 별도의 객체를 할당 MyClass source = new MyClass(); //객체의 깊은 복수 MyClass target = source.DeepCopy(); } class MyClass { public int member_filed1; public int member_filed2; //깊은 복사를 수행하는 코드를 직접 작성 public MyClass DeepCopy() { MyClass deepCopyClass = new MyClass(); deepCopyClass.member_filed1 = this.member_filed1; deepCo..
-
가변길이 매개변수 - 메소드 정의, 메소드 호출
가변길이 매개변수· 매개변수의 개수가 유연하게 변할 수 있는 매개 변수· 가변길이 매개변수는 params 키워드와 배열을 사용하여 선언 메소드 정의 int total = 0; total = Sum( 1, 2 ); total = Sum( 1, 2, 3 ); total = Sum( 1, 2, 3, 4, 5, 6, 7, 8, 9, 10 );
-
문자 데이터(char), 문자열(string)
문자· 문자 데이터(char)· 문자열(string) 문자 데이터(char)문자 하나를 표현데이터를 담을 때는 작은 따옴표 ‘와 ‘로 묶어서 표현
-
.NET skills mobile and create outstanding Android, iOS, and Windows apps - NET 기술을 사용하여 크로스 플랫폼 앱을 빌드하는 방법에 대한 무료 E-Book
.NET skills mobile and create outstanding Android, iOS, and Windows appsNET 기술을 사용하여 크로스 플랫폼 앱을 빌드하는 방법에 대한 무료 E-Book https://info.microsoft.com/guide-to-building-great-apps.html?wt.mc_id=DX_879967 직접 다운로드