Skip to main content

.NET / C# Cloud SDK Getting Started

Nuget GitHub

Initializing SDK

To start, initialize a client using the SDK key.

using System;
using System.Diagnostics;
using DevCycle.SDK.Server.Cloud.Api;

namespace Example {
public class Example {
public void main() {
// using ensures REST Client resources are correctly disposed once no longer required.
using DevCycleCloudClient client = new DevCycleCloudClientBuilder()
.SetSDKKey("<DEVCYCLE_SERVER_SDK_KEY>")
.Build();
}
}
}