| c# Programming Glossary: summaryEncrypt/Decrypt string in .NET http://stackoverflow.com/questions/202011/encrypt-decrypt-string-in-net  static byte _salt Encoding.ASCII.GetBytes o6806642kbM7c5 summary Encrypt the given string using AES. The string can be decrypted.. DecryptStringAES . The sharedSecret parameters must match. summary param name plainText The text to encrypt. param param name sharedSecret.. the encrypted bytes from the memory stream. return outStr  summary Decrypt the given string. Assumes the string was encrypted using.. 
 How to read a text file reversely with iterator in C# http://stackoverflow.com/questions/452902/how-to-read-a-text-file-reversely-with-iterator-in-c-sharp  using System.IO using System.Text namespace MiscUtil.IO summary Takes an encoding defaulting to UTF 8 and a function which produces.. The stream returned by the function must be seekable. summary public sealed class ReverseLineReader IEnumerable string  summary.. public sealed class ReverseLineReader IEnumerable string  summary Buffer size to use by default. Classes with internal access.. 
 Deep cloning objects in C# http://stackoverflow.com/questions/78536/deep-cloning-objects-in-c-sharp  using System.Runtime.Serialization.Formatters.Binary summary Reference Article http www.codeproject.com KB tips SerializedObjectCloner.aspx.. object. Binary Serialization is used to perform the copy. summary public static class ObjectCopier summary Perform a deep Copy.. perform the copy. summary public static class ObjectCopier summary Perform a deep Copy of the object. summary typeparam name T.. 
 Group by Weeks in LINQ to Entities http://stackoverflow.com/questions/1059737/group-by-weeks-in-linq-to-entities  Linq to Entities how to subtract one date from another Summary I'd like to thank everyone for their thoughtful and creative.. 
 DataContractSerializer doesn't call my constructor? http://stackoverflow.com/questions/1076730/datacontractserializer-doesnt-call-my-constructor  string Author get set DataMember Order 2 public string Summary get set When I deserialize an object of that class the breakpoint.. 
 JavaScriptSerializer.Deserialize - how to change field names http://stackoverflow.com/questions/1100191/javascriptserializer-deserialize-how-to-change-field-names  how to change field names  Summary How do I map a field name in JSON data to a field name of a.. 
 WPF Button Mouseover Image http://stackoverflow.com/questions/12271916/wpf-button-mouseover-image  dealing with. If this is a duplicate question I apologize. Summary How do I change the background image of a button on a mouse.. 
 What's the difference between an argument and a parameter? http://stackoverflow.com/questions/156767/whats-the-difference-between-an-argument-and-a-parameter  already have a copy of Steve McConnell 's marvellous book. Summary The general consensus seems to be that it's OK to use these.. 
 Conversion of a decimal to double number in C# results in a difference http://stackoverflow.com/questions/1584314/conversion-of-a-decimal-to-double-number-in-c-sharp-results-in-a-difference  a decimal to double number in C# results in a difference  Summary of the problem For some decimal values when we convert the type.. 
 ASP.NET Custom Controls - Composites http://stackoverflow.com/questions/17532/asp-net-custom-controls-composites  Custom Controls Composites  Summary Hi All OK further into my adventures with custom controls..... 
 A “Composable” Full Text Search with a Code First Model http://stackoverflow.com/questions/18746127/a-composable-full-text-search-with-a-code-first-model  If this looks like information overload jump down to In Summary . Background I'm writing a WebApi REST service to expose some.. set based functionality of the database engine. In Summary What is the most expedient way of accessing MS SQL Server's.. 
 What is the best buffer size when using BinaryReader to read big files (>1GB)? http://stackoverflow.com/questions/19558435/what-is-the-best-buffer-size-when-using-binaryreader-to-read-big-files-1gb  space and the device without any intermediate copying. Summary For single disks use the defaults of the .NET framework they.. 
 An ASP.NET setting has been detected that does not apply in Integrated managed pipeline mode http://stackoverflow.com/questions/4209999/an-asp-net-setting-has-been-detected-that-does-not-apply-in-integrated-managed-p  it ain't working. The IIS error message I get is Error Summary HTTP Error 500.22 Internal Server Error An ASP.NET setting has.. 
 How to capture Shell command output in C#? http://stackoverflow.com/questions/4587415/how-to-capture-shell-command-output-in-c  to capture Shell command output in C#  Summary query registry on remote machine capture output to use in application.. 
 When do we need to set UseShellExecute to True? http://stackoverflow.com/questions/5255086/when-do-we-need-to-set-useshellexecute-to-true  do we need to set UseShellExecute to True   Summary Gets or sets a value indicating whether to use the operating.. 
 Function profiling woes - Visual Studio 2010 Ultimate http://stackoverflow.com/questions/5525758/function-profiling-woes-visual-studio-2010-ultimate  an analysis of my application and having looked at the Summary I've noticed that the Hot Path list does not mention any of.. 
 The purpose of delegates [duplicate] http://stackoverflow.com/questions/687626/the-purpose-of-delegates  Events as delegates which is documented as being Summary Represents the method that will handle an event that has no.. 
 Eric Lippert's challenge “comma-quibbling”, best answer? http://stackoverflow.com/questions/788535/eric-lipperts-challenge-comma-quibbling-best-answer  you should try to read Eric's blog it is pure wisdom. Summary Write a function that takes a non null IEnumerable and returns.. 
 Is this Factory Method creation pattern? http://stackoverflow.com/questions/806911/is-this-factory-method-creation-pattern  this schema as a variant of the Factory Method Pattern . Summary of the Summary In my opinion this snippet is not a proper implementation.. a variant of the Factory Method Pattern . Summary of the Summary In my opinion this snippet is not a proper implementation of.. 
 Basic render 3D perspective projection onto 2D screen with camera (without opengl) http://stackoverflow.com/questions/8633034/basic-render-3d-perspective-projection-onto-2d-screen-with-camera-without-openg  transformation matrix pp resulting is ps point on screen. Summary I hope that covers most of it. There are holes in the above.. 
 |