https://github.com/anayarojo/qualisys-configuration
Ejemplo básico de pruebas unitarias en C#
https://github.com/anayarojo/qualisys-configuration
configuration csharp nuget-package testing
Last synced: about 2 months ago
JSON representation
Ejemplo básico de pruebas unitarias en C#
- Host: GitHub
- URL: https://github.com/anayarojo/qualisys-configuration
- Owner: anayarojo
- License: mit
- Created: 2017-12-13T23:37:14.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2018-05-03T22:15:57.000Z (about 8 years ago)
- Last Synced: 2025-01-27T22:47:18.680Z (over 1 year ago)
- Topics: configuration, csharp, nuget-package, testing
- Language: C#
- Homepage: https://www.nuget.org/packages/QualisysConfig/
- Size: 128 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Qualisys Configuration
Utility to obtain configurations in a specific data type.
#### Nuget installation:
```
Install-Package QualisysConfig -Version 1.0.2
```
#### Configuration example:
```xml
```
#### Basic use example:
```csharp
using System;
using QualisysConfig;
public class Program
{
public static void Main()
{
string lStrValue = QsConfig.GetValue("string");
char lChrValue = QsConfig.GetValue("char");
int lIntValue = QsConfig.GetValue("int");
long lLonValue = QsConfig.GetValue("long");
float lFltValue = QsConfig.GetValue("float");
double lFltValue = QsConfig.GetValue("double");
decimal lDmlValue = QsConfig.GetValue("decimal");
DateTime lDtmValue = QsConfig.GetValue("date");
bool lBolValue = QsConfig.GetValue("bool");
SampleEnum lEnmValue = QsConfig.GetValue("enum");
}
}
public enum SampleEnum
{
ENUM_A,
ENUM_B,
ENUM_C
}
```
See more
[Nuget package page](https://www.nuget.org/packages/QualisysConfig/)