meew0 wrote:
Yay VM
I like VMs more than OSs. I'm making a graphical VM in C#
Current release preview: When I find the file on my computer, 2011
![]()
Lol,
Sounds interesting.
Offline
*gets back to home*
*turns computer and external hard drive on*
*looks for the reason why the external hard drive doesn't display*
*after 3 minutes found the wire that isn't connected to the computer
*
*turns search on*
*after 10 minutes: found nothing*
*searches on external hard drive*
FOUND IT! I found a version in C++ and a version in VisualBasic, but no one in C#
Sorry
When I get time, I will try to program it in C#
Offline
meew0 wrote:
*gets back to home*
*turns computer and external hard drive on*
*looks for the reason why the external hard drive doesn't display*
*after 3 minutes found the wire that isn't connected to the computer*
*turns search on*
*after 10 minutes: found nothing*
*searches on external hard drive*
FOUND IT! I found a version in C++ and a version in VisualBasic, but no one in C#Sorry
![]()
When I get time, I will try to program it in C#![]()
Lol, thats quite funny.
Offline
Sorry for bumping, but:
using System;
class Program
{
static void Main()
{
Console.Title = "Hi!";
Console.BackgroundColor = ConsoleColor.DarkGreen;
Console.WriteLine("Hello world!");
Console.WriteLine("Press the enter key to exit");
Console.Read();
Haha();
}
static void Haha()
{
Console.WriteLine();
for (int i = 1; i <= 10; i++)
{
Console.WriteLine("YOU ARE NEVER GONNA GET OUTTA HERE!");
}
Console.WriteLine("Press the enter key to exit!");
Console.Read();
Haha();
}
}IDK...
Last edited by ThePCKid (2010-05-01 20:10:13)
Offline
Personally I prefer Scratch
C# looks hard
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^
Idk if I should try BASIC, Python, WYSIWYG (
), Ruby(RMXP?), GML, or something lol

Offline
Ludichris1 wrote:
Personally I prefer Scratch
![]()
C# looks hard![]()
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^
Idk if I should try BASIC, Python, WYSIWYG (), Ruby(RMXP?), GML, or something lol
Hmm... Visual Basic is good for a beginner.
Offline
using System;
class Program
{
static void Main()
{
Console.Write("Whats your name? ");
Console.WriteLine("Hi {0}!", Console.ReadLine());
Console.Write("Press the enter key to exit");
Console.Read();
}
}Now I know how to read user input...
Offline
using System;
class Program
{
static void Main()
{
string num;
Console.Write("Enter a number between 1 and 3: ");
num = Console.ReadLine();
if (num == "1")
Console.WriteLine("Hi Bob!");
else if (num == "2")
Console.WriteLine("Hi Sheldon!");
else if (num == "3")
Console.WriteLine("Hi Christopher!");
else
Console.WriteLine("{0} isn't between 1 and 3.", num);
Console.Write("Press the enter key to close");
Console.Read();
}
}Boredem has struck again!
C++ version
Last edited by ThePCKid (2010-05-01 22:45:44)
Offline
Lots of those programs are VERY random...
Ludichris1 wrote:
Personally I prefer Scratch
![]()
C# looks hard![]()
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^
Idk if I should try BASIC, Python, WYSIWYG (), Ruby(RMXP?), GML, or something lol
WYSIWYG is just an anagram for What You See Is What You Get
Offline
markyparky56 wrote:
Lots of those programs are VERY random...
Ludichris1 wrote:
Personally I prefer Scratch
![]()
C# looks hard![]()
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^
Idk if I should try BASIC, Python, WYSIWYG (), Ruby(RMXP?), GML, or something lol
WYSIWYG is just an anagram for What You See Is What You Get
Um.. I know lol. I' m saying a programming language with no programming

Offline
Ludichris1 wrote:
markyparky56 wrote:
Lots of those programs are VERY random...
Ludichris1 wrote:
Personally I prefer Scratch
![]()
C# looks hard![]()
But i respect you and applaud you for taking on a feat. It will greatly help you in programming for things ^o^
Idk if I should try BASIC, Python, WYSIWYG (), Ruby(RMXP?), GML, or something lol
WYSIWYG is just an anagram for What You See Is What You Get
Um.. I know lol. I' m saying a programming language with no programming
![]()
So its not a programming language,
Thats not funny...
Offline
markyparky56 wrote:
Lots of those programs are VERY random...
I know, I was just experementing
Offline
ThePCKid wrote:
markyparky56 wrote:
Lots of those programs are VERY random...
I know, I was just experementing
How about making something with purpose?
Offline
markyparky56 wrote:
ThePCKid wrote:
markyparky56 wrote:
Lots of those programs are VERY random...
I know, I was just experementing
How about making something with purpose?
Maybe later. I just installed Python.
Offline
ThePCKid wrote:
markyparky56 wrote:
ThePCKid wrote:
I know, I was just experementing
How about making something with purpose?
Maybe later. I just installed Python.
Try Iron Python, its like visual studio, but for Python.
Offline