¡@

Home 

c# Programming Glossary: maintains

Why is ushort + ushort equal to int?

http://stackoverflow.com/questions/10065287/why-is-ushort-ushort-equal-to-int

slow. But otherwise the reason that explains why Microsoft maintains two languages that have otherwise very similar capabilities...

Why have HashSet but not Set in C#?

http://stackoverflow.com/questions/1023697/why-have-hashset-but-not-set-in-c

In particular the equivalent of Java's LinkedHashSet which maintains insertion order would be useful in some cases. To be fair the..

Good C# open-source projects to participate in? [closed]

http://stackoverflow.com/questions/1503239/good-c-sharp-open-source-projects-to-participate-in

for projects listed as being coded in C#. SourceForge maintains a list of needed help or you can use the project finder here..

Preserving exceptions from dynamically invoked methods

http://stackoverflow.com/questions/15668334/preserving-exceptions-from-dynamically-invoked-methods

two options it seems. They're outlined below. Option 1 maintains the type of the exception thrown by MyStaticFunction but the.. the StackTrace is ruined because of the throw . Option 2 maintains the StackTrace of the exception but the type of the exception..

How to call base.base.method()?

http://stackoverflow.com/questions/2323401/how-to-call-base-base-method

Allowing a derived class of the base to skip the code that maintains those invariants could put the base into an inconsistent corrupted..

C# Object Pooling Pattern implementation

http://stackoverflow.com/questions/2510975/c-sharp-object-pooling-pattern-implementation

library like Castle but I won't get into that . It also maintains a reference to the Pool that creates it so that when we Dispose..

Do session use cookies?

http://stackoverflow.com/questions/2589823/do-session-use-cookies

the unique id is stored in the URL. From Microsoft ASP maintains session state by providing the client with a unique key assigned..

Is CorrelationManager.LogicalOperationStack compatible with Parallel.For, Tasks, Threads, etc

http://stackoverflow.com/questions/4729479/is-correlationmanager-logicaloperationstack-compatible-with-parallel-for-tasks

as manipulated in the sample code provided in my question maintains its integrity. At all times the contents of the LogicalOperationStack.. being modified. Even if the calling code i.e. the delegate maintains the stack correctly ensuring that each StartLogicalOperation..

WPF Styles/Template inheritance

http://stackoverflow.com/questions/7070421/wpf-styles-template-inheritance

you set its background colour to say blue. Then the button maintains the gradients but instead of them been off white they are now..

Attributes in C#

http://stackoverflow.com/questions/726029/attributes-in-c-sharp

msgData value As you can see VehicleDescriptionAttribute maintains a private internal string msgData that can be set using a custom..

C# WOW6432 registry node messin things up

http://stackoverflow.com/questions/8959983/c-sharp-wow6432-registry-node-messin-things-up

into play. For certain parts of the registry the system maintains two distinct views one for 32 bit processes and one for 64 bit..

What's the difference between SortedList and SortedDictionary?

http://stackoverflow.com/questions/935621/whats-the-difference-between-sortedlist-and-sorteddictionary

than SortedDictionary TKey TValue . SortedList actually maintains a sorted array rather than using a tree. It still uses binary..

ExecuteReader requires an open and available Connection. The connection's current state is Connecting

http://stackoverflow.com/questions/9705637/executereader-requires-an-open-and-available-connection-the-connections-curren

of times that new connections must be opened. The pooler maintains ownership of the physical connection. It manages connections..

How can I determine which exceptions can be thrown by a given method?

http://stackoverflow.com/questions/986180/how-can-i-determine-which-exceptions-can-be-thrown-by-a-given-method

as well as keeping track of methods already visited . It maintains a single list of collections that can be thrown using a HashSet.. T object which is returned at the end. It additionally maintains an array of local variables and a stack in order to keep track..