1
0
mirror of https://github.com/DarthAffe/CUE.NET.git synced 2025-12-13 00:58:31 +00:00

Updated Initializing CUE.NET (markdown)

DarthAffe 2015-11-14 16:25:13 +01:00
parent c7bd81a47e
commit ca325cd267

@ -3,9 +3,9 @@ This can be done anytime (preferable at the application start) by calling
```C#
CueSDK.Initialize();
```
After this you are free to work with the KeyboardSDK, MouseSDK or HeadsetSDK provided by the static CueSDK class whenever you like.
After this you are free to work with the _KeyboardSDK_, _MouseSDK_ or _HeadsetSDK_ provided by the static _CueSDK_ class whenever you like.
Since there could always be a problem while initializing CUE.NET you should catch the **WrapperException** and **CUEException** and check if the SDK you want to use is initialized.
Since there could always be a problem while initializing CUE.NET you should catch the **_WrapperException_** and **_CUEException_** and check if the SDK you want to use is initialized.
A full initialization block could look like this:
```C#