TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
kovan
NA
636
0
answer to gerrb's
Jan 7 2004 6:13 PM
the thread u started is locked i couldnt reply so here is your answer to use "global" variables in c# you can use static variables [code] public class blah { private blah() { } public static string strBlah; public static string strBlah2; } TO USE THEM u dont have to create instance of this class to use them just do blah.strBlah = "test"; [/code]
Reply
Answers (
1
)
application scope variables ... cant access tthem
RE: application scope variables ... cant access tthem...