Click here to Skip to main content
15,888,202 members
Home / Discussions / C#
   

C#

 
QuestionNeed to pull a date from a web site. Pin
DFlat4Now25-Aug-08 14:16
DFlat4Now25-Aug-08 14:16 
AnswerRe: Need to pull a date from a web site. Pin
chaiguy133725-Aug-08 14:36
chaiguy133725-Aug-08 14:36 
AnswerRe: Need to pull a date from a web site. Pin
N a v a n e e t h25-Aug-08 18:15
N a v a n e e t h25-Aug-08 18:15 
AnswerRe: Need to pull a date from a web site. Pin
_tasleem25-Aug-08 21:29
_tasleem25-Aug-08 21:29 
QuestionDisposing a custom class Pin
Vodstok25-Aug-08 11:02
Vodstok25-Aug-08 11:02 
AnswerRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 11:07
Colin Angus Mackay25-Aug-08 11:07 
GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 11:36
Vodstok25-Aug-08 11:36 
GeneralRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 11:55
Colin Angus Mackay25-Aug-08 11:55 
Vodstok wrote:
the object is being used as a static object


Do you mean that the class is declared as static:
public static class MyClass
{
}



Vodstok wrote:
would that cause it to persist even though it has been "instantiated" with another identity?


I don't understand what you mean by that. A static object, once created, will persist for the life of the application. You don't "instantiate" the object directly, the CLR decides when to do that. It is possible that a static class won't be "instantiated" (actually, for static classes, the term is "initialised") at all.


Vodstok wrote:
Essentially, the variable name is being reused on another page, but is returning all ofthe same information, even though it should be night and day different.


If it is static then there is only ever the one "instance" (if you like).


GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 12:05
Vodstok25-Aug-08 12:05 
GeneralRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 12:35
Colin Angus Mackay25-Aug-08 12:35 
GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 12:54
Vodstok25-Aug-08 12:54 
GeneralRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 13:40
Colin Angus Mackay25-Aug-08 13:40 
GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 13:29
Vodstok25-Aug-08 13:29 
GeneralRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 13:41
Colin Angus Mackay25-Aug-08 13:41 
GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 13:48
Vodstok25-Aug-08 13:48 
GeneralRe: Disposing a custom class Pin
Colin Angus Mackay25-Aug-08 13:56
Colin Angus Mackay25-Aug-08 13:56 
GeneralRe: Disposing a custom class Pin
Vodstok25-Aug-08 14:13
Vodstok25-Aug-08 14:13 
QuestionCan an object cast itself to a derived class? Pin
Togakangaroo25-Aug-08 10:32
Togakangaroo25-Aug-08 10:32 
AnswerRe: Can an object cast itself to a derived class? Pin
Colin Angus Mackay25-Aug-08 10:48
Colin Angus Mackay25-Aug-08 10:48 
GeneralRe: Can an object cast itself to a derived class? Pin
Togakangaroo25-Aug-08 11:00
Togakangaroo25-Aug-08 11:00 
AnswerRe: Can an object cast itself to a derived class? Pin
chaiguy133725-Aug-08 14:50
chaiguy133725-Aug-08 14:50 
QuestionHow can I add a button here ? Pin
Mohammad Dayyan25-Aug-08 10:01
Mohammad Dayyan25-Aug-08 10:01 
AnswerRe: How can I add a button here ? Pin
DaveyM6925-Aug-08 10:19
professionalDaveyM6925-Aug-08 10:19 
AnswerRe: How can I add a button here ? Pin
Thomas Stockwell26-Aug-08 2:16
professionalThomas Stockwell26-Aug-08 2:16 
QuestionPassing array to operator overload Pin
DaveyM6925-Aug-08 9:48
professionalDaveyM6925-Aug-08 9:48 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.