Category

    [Opic] 이웃 묘사

    문법상 맞지 않을 수 잇습니다. 이웃에 대한 간단한 묘사와 설명이다. [질문] Describe your neighbors. who is your closest neighbor? How often do you meet your neighbor and what do you do with him or her?Tell me about your neighbors and their routines. Tell me about the kids, adults, and the order people.Tell me about some memorable events since you moved there. [답]The only neighbor I talk to is Mr. Lee who lives upstairs. 나와 대화..

    [Opic] 사는 곳과 동네

    문법상 맞지 않을 수 잇습니다. 자신이 사는 곳에 대한 간단한 묘사와 설명이다. [질문] What is your neighborhood like? Are there many new buildings? Do many people move into your neighborhood? How has your neighborhood changed over the year? What is it like to live in that part of town? [답]I live my neighborhood because it's a quiet and convenient place to live 나는 조용하고 편의시설이 잘 갖춰져 있기 때문에 우리 동네에 삽니다. I live an apartment complex near..

    [오픽]자기소개

    아래 글의 문법은 맞지 않을 수 있습니다. My Name is Sonseungha and I am 26 years old. I am living with my family in Masan and there are 3 members in my family includingmother, younger brother and me. I am a senior majoring in Mechatronics at Koreatech university. I'd like to work for a big company like the Samsung after graduation. so Iam preparing an English Proficiency Test to be a qualified candidate when I a..

    [Tool] ColorScripter (소스코드 이쁘게 블로그에 올리기)

    [Tool] ColorScripter (소스코드 이쁘게 블로그에 올리기)

    많은 사람들이 블로그를 하면서, 자신의 소스코드를 공개한다. 하지만 코드 정리하는게 굉장히 귀찮은 작업이다. 이러한 작업을 간단히 해주는 툴을 소개한다. ColorScripter라는 툴이다. 툴을 실행하면 아래와 같이 언어를 선택할 수 있는 창이 뜬다. 여기서 C#을 선택해 보겠다. 선택을 하게 되면 아래와 같이 기본틀이 구성된 화면이 나온다. 이곳에 소스를 붙여놓고, 복사 버튼을 누른다.!! 실시간 하이라이팅 기능 이렇게 블로그 글쓰는 곳에 간단하게 붙여넣기만 하면 아래와 같이 깔끔하게 코드가 나오는 것을 확인할 수 있따.!! Colored By Color Scripter™123456789using System; public class Class1{ public Class1() { }}

    [C#] String - IndexOf 함수

    해당 문자열이 있으면 value의 인덱스 위치(0부터 시작)이고, 그렇지 않으면 -1입니다. value가 String.Empty인 경우 반환 값은 0입니다. 발생할 수 있는 예외는 Value가 Null 일때, ArgumentNullException 가 발생합니다. 예제 코드는 MSDN을 참조하였다. Colored By Color Scripter™1234567891011121314151617181920212223242526272829using System; public class Example{ public static void Main() { string s1 = "ani\u00ADmal"; string s2 = "animal"; // Find the index of the soft hyphen. Con..

    [C#] Singleton (싱글톤)

    Singleton Pattern 이란? -해당 클래스의 인스턴스가 하나만 생성하여, 어느 객체에서든 하나의 인스턴스로 접근 가능하도록 한다. 어디서든 하나의 인스턴스로 관리 및 조작해야할 필요가 있을 때 사용된다 ! 싱글톤 패턴에서는 생성자를 private로 선언하여 절대 외부에서 노출되지 않도록 합니다. instance라는 멤버 변수를 사용해서 static으로 전역에서 접근 가능한 메소드를 이용하여 인스턴스 만을 반환합니다. 그렇기 때문에 어디 어느 곳에서나 하나의 인스턴스로 조작 관리 가능합니다.! 시스템에서 전역으로 관리되고 단하나의 클래스에서만 정보가 유지되는 것을 원할때 -보통 시스템 자원관리나 정보를 관리합니다. 예를 들어서, 프린터가 하나있는데 그것에 대한 접근 인스턴스가 여러개가 생성이 되..