An open API service indexing awesome lists of open source software.

https://github.com/rededge967/kb-converter

a simple C# program to convert Kilobytes to bytes and bits.
https://github.com/rededge967/kb-converter

bits bytes csharp kilobytes

Last synced: 4 months ago
JSON representation

a simple C# program to convert Kilobytes to bytes and bits.

Awesome Lists containing this project

README

          

# kb-converter
- This is a simple C# program that can convert kilobytes to bytes and bits.

## How to?
- Download and run the `kb-converter.cs`
- Or copy the following code and paste it in a online C# compiler and run it.
```csharp
using System;
class JTP
{
static long bits(int kilobytes)
{
long Bits;
Bits = kilobytes * 8192;
return Bits;
}
static long bytes(int kilobytes)
{
long Bytes;
Bytes = kilobytes * 1024;
return Bytes;
}
static public void Main ()
{
int kilobytes;
Console.WriteLine("Enter the value of kilobytes: ");
kilobytes = Convert.ToInt32(Console.ReadLine());
Console.WriteLine ("There are " + bytes(kilobytes) + " Bytes in "+ kilobytes + " kilobytes");
Console.WriteLine ("There are " + bits(kilobytes) + " Bits in "+ kilobytes + " kilobytes");
}
}
```