c# Programming Glossary: substitution
In .NET XML deserialization, how can I allow polymorphic use of Array types? http://stackoverflow.com/questions/1007626/in-net-xml-deserialization-how-can-i-allow-polymorphic-use-of-array-types However when ArrayOfDog is used polymorphically e.g. as a substitution for xsd anyType this breaks. It appears to break because the..
ADO.NET |DataDirectory| where is this documented? http://stackoverflow.com/questions/1409358/ado-net-datadirectory-where-is-this-documented share improve this question DataDirectory is a substitution string so you can configure the location of your database file.. C myDB SQL Connection String with DataDirectory substitution string SqlConnection c new SqlConnection @ Data Source . SQLDB..
Slow SoapHttpClientProtocol constructor http://stackoverflow.com/questions/172095/slow-soaphttpclientprotocol-constructor way to achieve that is by using some regular expression substitution tool. Be careful as you do this because not all attributes appear..
How to do paging with simpledb? http://stackoverflow.com/questions/1795245/how-to-do-paging-with-simpledb output pageSize temp.getToken Where 1 and 2 are String substitutions and sdb.select is a fictitious method that includes the String.. sdb.select is a fictitious method that includes the String substitution code along with the SimpleDB call. Whether or not you can accomplish.. I'll put it within methods and get rid of the String substitutions private Result fetchPage String query int targetPage int pageSize..
Comparing strings with tolerance [closed] http://stackoverflow.com/questions/2344320/comparing-strings-with-tolerance the allowable edit operations being insertion deletion or substitution of a single character. Wikipedia.com This one is from dotnetperls.com..
Embedding mercurial revision information in Visual Studio c# projects automatically http://stackoverflow.com/questions/2386440/embedding-mercurial-revision-information-in-visual-studio-c-sharp-projects-autom thing to do. I also remember the problems that keyword substitution has caused me in projects at previous companies just the thought..
How do I embed fonts in an existing PDF? http://stackoverflow.com/questions/4231656/how-do-i-embed-fonts-in-an-existing-pdf fonts aren't embedded in the PDF the printer is doing font substitution. Why the fonts aren't embedded when generated I am creating..
How do parameterized queries help against SQL injection? http://stackoverflow.com/questions/5468425/how-do-parameterized-queries-help-against-sql-injection improve this question Parameterized queries do proper substitution of arguments prior to running the SQL query. It completely removes..
Why array implements IList? http://stackoverflow.com/questions/5968708/why-array-implements-ilist
Can you explain Liskov Substitution Principle with a good C# example? http://stackoverflow.com/questions/4428725/can-you-explain-liskov-substitution-principle-with-a-good-c-sharp-example you explain Liskov Substitution Principle with a good C# example Can you explain Liskov Substitution.. Principle with a good C# example Can you explain Liskov Substitution Principle The 'L' of SOLID with a good C# example covering all..
Dependency Injection - new instance required in several of a classes methods http://stackoverflow.com/questions/4648318/dependency-injection-new-instance-required-in-several-of-a-classes-methods the design of the consumer. This violates the Liskov Substitution Principle . A better option is to keep MyService as it is and..
Liskov Substition and Composition http://stackoverflow.com/questions/554145/liskov-substition-and-composition has no idea that SuperFoo truly does qualify in the Liskov Substitution sense...This means that my extended class via composition is..
Why is this switch on type case considered confusing? http://stackoverflow.com/questions/6304815/why-is-this-switch-on-type-case-considered-confusing to match on subclasses. But this would break the Liskov Substitution Principle. where if you passed in a C object the code would..
|