# C# Operators
###### tags: `C#` | August 27, 2019
## 01. Member Access Operator .
1. use the ```.``` token to access a member of a namespace or a type
###### eg:
###### 1. *Use . to access a nested namespace within a namespace*
```
using System.Collections.Generic;
```
###### 2. *Use . to form a qualified name to access a type within a namespace*
```
System.Collections.Generic.IEnumerable<int> numbers = new int[] { 1, 2, 3 };
```
<!--more-->
###### 3. *Use . to access type members, static a