Problem : What languages or platforms influenced the .NET 1.0 Team to build-in the concept of Attributes from the very […]
Category: .Net Stack
AppendChild() is not a function javascript
Problem : this is my javascript <head runat=”server”> <script type=”text/javascript” language=”javascript”> function createQuestionPanel() { var element = document.createElement(“Input”); element.setAttribute(“type”, “button”); […]
What design patterns are used throughout the .NET Framework?
Problem : What classes in the .NET Framework implement the various design patterns such as decorator, factory, etc.? Solution : […]
Repeatably Feeding Input to a Process’ Standard Input
Problem : I have a (C#) console application which maintains a state. The state can be altered by feeding the […]
Selecting which project under a solution to debug or run in Visual Studio 2010
Problem : This one should be easy. I just can’t figure out what to search for… For this one solution […]
SQL0469 IN, OUT, or INOUT not valid for parameter 2 in procedure
Problem : I’m trying to run a stored procedure against an IBM iSeries running AS400 and getting the above error […]
WCF and streaming requests and responses
Problem : Is it correct that in WCF, I cannot have a service write to a stream that is received […]
Convert from to string in database to boolean property Entity Framework 4.1
Problem : i am working on a legacy oracle database that uses character literals T and F in the database […]
Visual Studio 2019 Not Showing .NET 5 Framework
Problem : I’ve been trying to upgrade my ASP.NET project in Visual Studio from the .NET 4.7.2 framework to .NET […]
Apply a Regex on Stream?
Problem : I’m searching for fast and safe way to apply Regular Expressions on Streams. I found some examples over […]