An open API service indexing awesome lists of open source software.

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#

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/)