Follow along with the video below to see how to install our site as a web app on your home screen.
Note: this_feature_currently_requires_accessing_site_using_safari
// A "Hello World!" program in C#
class Hello
{
static void Main()
{
System.Console.WriteLine("Hello World!");
}
}
class Hello
{
static void Main()
{
MyClass MyObject = new MyClass();
string objectname = MyObject.GetObjectName();
System.Console.WriteLine(objectname);
}
}
class MyClass
{
private string GetObjectName()
{
return ("GoodBye world!");
}
}
MyClass MyObject = new MyClass();
string objectname = MyObject.GetObjectName();
Yeah, i think thats my problem too...Originally posted by Jamoe
There really isn't a quick answer to you questions. When i went from learning procedural at college to OO at Uni, it wasnt till the end of the second year that i started to grasp OO properly. (stuck in the procedural mindset)
Originally posted by Jamoe
FOP?function Orientated Programming,? thats a guess ive not heard of FOP befor
Originally posted by Dile
Why is it better than FOP? How is it executed?
Originally posted by Dile
Why is it better than FOP? How is it executed?