Hello
Learner
Login
|
Register
|
Forgot password
Home
Articles
Interview QA
Snippets
Tips
News
My Mirror
Submit Snippet
|
Snippets
Stats
Total Count
:
66
Snippet Categories
.NET Framework
ADO.NET
AJAX
ASP.NET
C#
CSS
HTML
JavaScript & Jquery
LINQ
Microsoft Azure
Others
Practices, Patterns & Arch
Remoting & Web services
Sharepoint
Silverlight
VB.NET
Visual Studio
WCF
Windows Forms
WPF
WWF
XML & XSLT
Snippets
Submit Snippet
API language runtime version in Azure Static Web Apps
This snippet shows how to configure the API language runtime version in Azure Static Web Apps using staticwebapp.config.json file.
By:
Ashok Nalam
|
07 Mar 2022
|
Microsoft Azure
|
Views:
259
|
Comments:
0
|
Tags:
azure
azure static web apps
How do you reverse a number in C# for loop?
In this snippet, we will write a program that reverses an array using for loop in c#.
By:
Ashok Nalam
|
18 Jan 2021
|
C#
|
Views:
1359
|
Comments:
0
|
Tags:
array
C#
for-loop
reverse
Read application settings in Azure Functions (.NET Core)
We define configuration based key values in application settings files. In Azure functions, you can define your settings in local.settings.json file. In this snippet, we will see how to read the settings.
By:
Ashok Nalam
|
16 Sep 2020
|
Microsoft Azure
|
Views:
8451
|
Comments:
0
|
Tags:
azure
azure app settings
azure functions
Create Azure Function App in Premium plan using Azure CLI
In this post, we will see how to create an Azure function App using Azure CLI commands(az functionapp create) in elastic premium plan EP1, EP2 and EP3.
By:
Ashok Nalam
|
14 Sep 2020
|
Microsoft Azure
|
Views:
5076
|
Comments:
0
|
Tags:
azure
azure cli
azure functions
Create Azure Function App using Azure CLI command(az functionapp create)
We can create Azure function apps using code, Azure Portal or Azure CLI. In this post, we will see how to create an Azure function App using Azure CLI commands(az functionapp create).
By:
Ashok Nalam
|
10 Sep 2020
|
Microsoft Azure
|
Views:
9493
|
Comments:
0
|
Tags:
azure
azure cli
azure functions
List Azure physical locations, display names and regional names in the current subscription
In order to see the list of supported Azure regions for your current subscription you can use “az account list-locations” command from https://shell.azure.com. The command shows displayName, geographyGroup, pairedRegion, physicalLocation, name, regionalDisplayName and subscriptionId.
By:
Ashok Nalam
|
18 Aug 2020
|
Microsoft Azure
|
Views:
13818
|
Comments:
0
|
Tags:
azure
azure cli
azure shell
Reverse array without using in-built function in C#.NET
In this snippet we will write a program which reverses an array with out using any in-built C#.NET function. Basically it shifts all elements from an array from left side to right side.
By:
Ashok Nalam
|
20 Dec 2019
|
C#
|
Views:
5699
|
Comments:
0
|
Tags:
array
C#
reverse
sorting
Resolve "Redundant Hostnames" issue using ASP.NET
This snippet show how to resolve "Redundant Hostnames" issue using ASP.NET.
By:
Ashok Nalam
|
19 Sep 2015
|
ASP.NET
|
Views:
6921
|
Comments:
0
|
Tags:
ASP.NET
error
global.asax
C#.NET Program to read a 4-digit integer and output the sum of its digits
In this snippet we will write C#.NET program to read a four digit integer and output the sum of its digits. Example: If user enters number as 1234 then the output will be 1+2+3+4=9.
By:
Ashok Nalam
|
16 Mar 2015
|
C#
|
Views:
49653
|
Comments:
0
|
Tags:
.NET
number
C#.NET string palindrome program without using string functions
In this snippet we will write a program to check whether the given string is palindrome string or not with out using any built-in string function.
By:
Ashok Nalam
|
15 Mar 2015
|
C#
|
Views:
15241
|
Comments:
0
|
Tags:
.NET
palindrome
string
1
2
3
4
5
6
7