Notice
Recent Posts
Recent Comments
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- 실버라이트 코리아
- Binding
- app
- 마이크로소프트
- phone
- HugeFlow
- usercontrol
- Windows Phone7
- Windows
- powerpoint
- xna
- 세미나
- 윈폰
- Windows Phone 7
- silverlight
- silverlight4
- 윈폰7
- 실버라이트
- 실버라이트코리아
- 7
- 한윤진
- codeplex
- Blend
- 임채정
- xap
- Microsoft
- SLKorea
- 윈도우폰
- DataGrid
- dynamic
- Today
- 0
- Total
- 83,923
은광
MemoryStream + StreamReader ??
class A : IDisposable { public void Dispose() { Console.WriteLine("A Dispose()"); } } class B : IDisposable { public void Dispose() { Console.WriteLine("B Dispose()"); } } using (A a = new A()) { using (B b = new B()) { } } =>이 코드를 Code Analysis을 통해서 Analyze 해보면 "No code analysis issues were detected." 라고 나온다. using (MemoryStream ms = new MemoryStream()) { using (StreamReader reader = new Stream..
Etc/C#
2013. 5. 31. 01:12