# Core
**Repository Path**: wyfwrx/Core
## Basic Information
- **Project Name**: Core
- **Description**: No description available
- **Primary Language**: Unknown
- **License**: MIT
- **Default Branch**: master
- **Homepage**: None
- **GVP Project**: No
## Statistics
- **Stars**: 0
- **Forks**: 0
- **Created**: 2020-06-09
- **Last Updated**: 2021-05-17
## Categories & Tags
**Categories**: Uncategorized
**Tags**: None
## README
# LuanNiao Core
We create this project case we need some base operation in the project(This list will be update as we realization new feature).
Like this:
1. Union Type: inspiration by [Stack over flow](https://stackoverflow.com/questions/3151702/discriminated-union-in-c-sharp "Stack Overflow")
# How to Use it?
#### UnionType
```C#
UnionType _testInstance = 1;
_testInstance = "";
_testInstance = new TestClass();
```
Detail demo you can find out in my Unit test project.[UTest](https://github.com/luanniao/Core/tree/master/src/Z.LuanNiao.Core.Test)