Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
ellie
c-sharp-study
Wiki
ellie csharp 2.basic
ellie csharp 2.basic
· Changes
Page history
no message
authored
Nov 09, 2015
by
ellie
Hide whitespace changes
Inline
Side-by-side
ellie-csharp-2.basic.markdown
View page @
8423f1b2
...
...
@@ -86,6 +86,8 @@ foreach (var elem in dict)
### **nullable**
bool 타입은 true/false값만을 가질 수 있는데, Nullable
<T>
타입은 일반적인 값 형식에 대해 null표현이 가능하게 하는 역할을 한다.
```
cs
Nullable
<
int
>
intValue
=
10
;
int
?
n
=
null
;
//int m1 = n; // Will not compile.
...
...