| OpenFileDialog openFileDialog = new OpenFileDialog | |
| { | |
| InitialDirectory = "C:\\", | |
| Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*", | |
| FilterIndex = 2, | |
| RestoreDirectory = true | |
| }; |
책에도 없는건데
인스턴스 new
{
초기화...
};
| OpenFileDialog openFileDialog = new OpenFileDialog | |
| { | |
| InitialDirectory = "C:\\", | |
| Filter = "txt files (*.txt)|*.txt|All files (*.*)|*.*", | |
| FilterIndex = 2, | |
| RestoreDirectory = true | |
| }; |
책에도 없는건데
인스턴스 new
{
초기화...
};
https://docs.oracle.com/javase/tutorial/java/javaOO/anonymousclasses.html
- dc App
참.. 자바가 아니라 c#이네
아 나도 스크롤 휙휙 내려서 제대로 못봤다 ㅋㅋㅋㅋ - dc App
https://msdn.microsoft.com/ko-kr/library/bb397680.aspx
- dc App
c++ 이니셜라이저 비슷한건가 암튼 ㄳ