Using computer vision API, you can analyze an image. To analyze an image, you can either upload an Image or specify an Image URL. Prerequisite A subscription keys. To get a subscription key go to this link: Obtaining Subscription Keys. Need an IDE for example: Visual Studio 2017 Step to create a sample application: Open
Month: July 2018
Factorial Calculator using C#
Factorial is a positive number which is the product of all number less than or equal to that positive number. For example: 0! = 1 1! = 1 2! = 2 * 1! = 2 3! = 3 * 2! = 6 … n! = n * (n – 1)! Here is the sample code