I am learning c# coming from a vbscript, Perl, PHP and flex background. I have a questions about objects.
In PHP if I want to create an object I would do this:
In Flex I would do this
Does c# have anything like this for creating objects?
Thanks,
timgerr
-How important does a person have to be before they are considered assassinated instead of just murdered?
Congratulations!
In PHP if I want to create an object I would do this:
Code:
$t = new stdClass;
$t->name = "Tom";
Code:
var t:Object = new Object();
t.name = "Tom";
Thanks,
timgerr
-How important does a person have to be before they are considered assassinated instead of just murdered?
Congratulations!