|
-
Jan 4th, 2003, 12:41 PM
#1
Thread Starter
Hyperactive Member
What is equal to Dim in C#?
Hey whats eqaul to dim in C#?
-
Jan 4th, 2003, 02:46 PM
#2
Thread Starter
Hyperactive Member
-
Jan 4th, 2003, 02:58 PM
#3
Frenzied Member
I cant believe that no one has answered this simple question yet .
Anyway:
Dim sName as String is the same as
string sName; in c#
cheers
Dont gain the world and lose your soul
-
Jan 8th, 2003, 03:46 PM
#4
yay gay
for class or whatever instantiation make
type name = new type(args);
\m/  \m/
-
Jan 9th, 2003, 02:52 PM
#5
Addicted Member
VB Code:
<object> <name> = new <object>();
string sMyString = new string();
'creates empty string called sMyString
int iMyInt = new int();
'creates empty integer called sMyInt
string sMyString = new string('#', 8);
'creates string "########"
string sMyString = "blah blah blah"
'creates string "blah blah blah"
Not at all related to sheep...
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|