Skip to content

Instantly share code, notes, and snippets.

@groupdocs-cloud-gists
groupdocs-cloud-gists / docx-to-html.cs
Last active May 13, 2024 17:14
Convert Word to HTML
// More examples over https://github.com/groupdocs-conversion-cloud/groupdocs-conversion-cloud-dotnet
// Obtain your API credentials
string clientId = "4bdefca3-f08c-4088-9ca0-55c38f4b7f22";
string clientSecret1 = "a43c8b4365246a062688a259abe5b469";
// Create an instance of the Configuration class and initialize it with the Client ID & Client Secret.
var configurations = new GroupDocs.Conversion.Cloud.Sdk.Client.Configuration(clientId, clientSecret1);
// Define the value of ApiBaseUrl to set the base url of DOC to HTML conversion API.
configuration.ApiBaseUrl = "https://api.groupdocs.cloud";
How to convert CSV to PDF with .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / csv to json
Last active May 8, 2024 00:43
Convert CSV to JSON
How to convert CSV to JSON with .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / convert csv to jpg
Last active May 8, 2024 00:31
CSV to JPG converter
How to convert CSV to JPG with C# .NET
Learn how to convert PDF to Excel workbook with .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / PDF to PowerPoint online
Last active April 26, 2024 02:47
Convert PDF to PowerPoint
How to convert PDF to PowerPoint with .NET REST API
How to convert Comma Separated File to HTML with C# .NET
@groupdocs-cloud-gists
groupdocs-cloud-gists / Convert CSV to XLS
Last active April 17, 2024 02:40
CSV to Excel online
How to convert CSV to XLS online
@groupdocs-cloud-gists
groupdocs-cloud-gists / Download Webpage as Excel
Last active April 17, 2024 02:41
Convert HTML to Excel online
How to convert HTML to Excel using .NET REST API
@groupdocs-cloud-gists
groupdocs-cloud-gists / Convert Excel to JPG
Last active April 15, 2024 02:44
Excel to JPG conversion
How to convert Excel to JPG with .NET REST API