Merge Two Sorted Lists

cd_///** // * Definition for singly-linked list. // * public class ListNode { // * public in ...

Integer to Roman

cd_ public class Solution { public string IntToRoman(int num) { string roman=""; ...

Roman to Integer

cd_public class Solution { public int RomanToInteger(string s) { int num=0; ...

The index entry of length exceeds the maximum length of 1700 bytes for nonclustered indexes

SQL Server 2016 and Azure SQL database have increased the maximum size for index keys for non-clust ...

Read and Write XML file used LINQ in C#

XLinq is . NET Language Integrated Query for XML Data It takes advantage of the Standard Query O ...

Canada Open Work Permit for H-1B Visa holder

The application process opened on July 16, 2023, and will remain open until 10k applications are re ...

Error: Failed to get resource ID for resource type Microsoft.Web/Sites

bYellow1. red.Error: Failed to get resource ID for resource type 'Microsoft.Web/Sites' and resourc ...

How to Encrypt and Decrypt a string in SQL Server

To encrypt and decrypt a string we SQL Server 2008 and newer versions have predefined Cryptographic ...

Download Html to Word Document

HTML: HyperText Markup Language, is a Web format file. DOC: Microsoft Word Document, is a file w ...

Difference between Add and Append methods of a list in C#

List.Add() Add method will modify the instance of the list and adds a single item to the end of ...