What framework is used for performance testing/load testing?
hi, I am a begineer to c sharp. I have written a code for finding out prime numbers. Can anyone identify what are the flaws in my code. Kindly donot complex the code or present logic because i am new to c sharp and just started learning programming language.Thanks in advance. class Program { static void Main(string[] args) { int a,b=1; a = int.Parse(Console.ReadLine()); c= int.Parse(Console.ReadLine()); if (a % b == 0 && a % 2 != 0 && a % a == 0) Console.WriteLine(a); else if (a % b == 0 && a % 2 == 0) Console.WriteLine(a%2); Console.WriteLine("Number is not PRIME"); Console.ReadLine(); } } }
Why we use dll in c#?
Is c# slower than java?
Describe how a .net application is compiled and executed
Can you declare a C++ type destructor in C# like ~MyClass() ?
How does inheritance work in c#?
What you mean by inner exception in c#?
Why abstract class is not instantiated in c#?
Is xamarin free?
Is int an object in c#?
What is a variable in c#?
How many types of polymorphism are there?