Do NOT use for questions about .NET Core - use [.net-core] instead.
When I clean and then build my solution that has several projects, the output window reports that the build succeeded. …
.net visual-studio msbuild visual-studio-expressNow that .NET v3.5 SP1 has been released (along with VS2008 SP1), we now have access to the .NET entity …
.net entity-framework linq-to-sqlIs there a way in C# where I can use reflection to set an object property? Ex: MyObject obj = new …
c# .net reflection propertiesWhen getting file names in a certain folder: DirectoryInfo di = new DirectoryInfo(currentDirName); FileInfo[] smFiles = di.GetFiles("*.txt"); foreach (FileInfo …
c# .netI have a Person object with a Nullable DateOfBirth property. Is there a way to use LINQ to query a …
c# .net linqWhat's the best way to call a generic method when the type parameter isn't known at compile time, but instead …
c# .net generics reflectionThis is a .NET question for C# (or possibly VB.net), but I am trying to figure out what's the …
c# .net stringI have googled on this topic and I have looked at every answer, but I still don't get it. Basically …
c# .net encoding utf-8 iso-8859-1What if I want to split a string using a delimiter that is a word? For example, This is a …
c# .net string