¡@

Home 

c# Programming Glossary: retain

How to record window position in WinForms application settings

http://stackoverflow.com/questions/105932/how-to-record-window-position-in-winforms-application-settings

and the old position is now off screen. Splitters should retain their position Tab containers should retain their selection.. should retain their position Tab containers should retain their selection Some dropdowns should retain their selection.. should retain their selection Some dropdowns should retain their selection Window state maximize minimize normal is the..

Get IPv4 addresses from Dns.GetHostEntry()

http://stackoverflow.com/questions/1059526/get-ipv4-addresses-from-dns-gethostentry

Getting ServiceStack to retain type information

http://stackoverflow.com/questions/10750571/getting-servicestack-to-retain-type-information

ServiceStack to retain type information I'm using ServiceStack to serialize and deserialize.. a Dog type. Is there any way I can tell ServiceStack to retain the information that this particular instance was of the Dog..

What's better: DataSet or DataReader?

http://stackoverflow.com/questions/1083193/whats-better-dataset-or-datareader

the most important differences is that a DataReader will retain an open connection to your database until you're done with it..

C#: Difference between List<T> and Collection<T> (CA1002, Do not expose generic lists) [duplicate]

http://stackoverflow.com/questions/1232108/c-difference-between-listt-and-collectiont-ca1002-do-not-expose-generic

can still use the List as the actual backing store but you retain future extensibility as you can swap out the concerete implementation..

C# (mono) Linux web server hosting with consistent static variables across threads

http://stackoverflow.com/questions/13480328/c-sharp-mono-linux-web-server-hosting-with-consistent-static-variables-across

requirement we do have is that we need static variables to retain their value across all incoming requests the same way they do..

ServiceStack Request DTO design

http://stackoverflow.com/questions/15927475/servicestack-request-dto-design

Based API Design Whilst ServiceStack encourages you to retain a Message based Design public class FindProducts IReturn List..

Initializing C# auto-properties

http://stackoverflow.com/questions/169220/initializing-c-sharp-auto-properties

auto property seems convenient and concise but how can I retain the initialization without adding a constructor and putting..

Why does asynchronous delegate method require calling EndInvoke?

http://stackoverflow.com/questions/1712741/why-does-asynchronous-delegate-method-require-calling-endinvoke

in the completion handler that you give to BeginInvoke and retain the asyncronous nature. EDIT For example class Program private..

Single-assembly multi-language Windows Forms deployment (ILMerge and satellite assemblies / localization) - possible?

http://stackoverflow.com/questions/1952638/single-assembly-multi-language-windows-forms-deployment-ilmerge-and-satellite-a

be deployed copied into place as a single assembly and yet retain the ability to contain multiple sets of culture specific resources...

How do I create an immutable Class?

http://stackoverflow.com/questions/352471/how-do-i-create-an-immutable-class

case you should copy away whatever state you will want to retain and avoid returning entire mutable objects unless you copy them..

multimap in .NET

http://stackoverflow.com/questions/380595/multimap-in-net

conditions are met 1 Redistributions of source code must retain the above copyright notice this list of conditions and the following..

Does Entity Framework 4 Code First have support for identity generators like NHibernate?

http://stackoverflow.com/questions/5275306/does-entity-framework-4-code-first-have-support-for-identity-generators-like-nhi

use GUID as the identifier. When inserting using EF they retain their Guid.Empty initial values. I know that you can set a default..

ListView DataItem Shows Null

http://stackoverflow.com/questions/609276/listview-dataitem-shows-null

was that I needed to specify DataKeyNames and use those to retain the information from the ListView. Here's the code I added try..

How to retain callsite information when wrapping NLog

http://stackoverflow.com/questions/7412156/how-to-retain-callsite-information-when-wrapping-nlog

to retain callsite information when wrapping NLog I have a class that..

C# When To Use “This” Keyword [duplicate]

http://stackoverflow.com/questions/843288/c-sharp-when-to-use-this-keyword

the underscores from your private variable names and retain the context improving understandability . I make it a practice..