2
votes
C# books for Developers that know Object Oriented Programming
I really like Programming C# Third Edition.
…
0
votes
Frustrated trying to read a path from an argument in C#
Here is a good example of a command line argument parser.
…
2
votes
How do I set the login info for SQL Server 2008 in Entity Framework?
Check this out:
Security Considerations (Entity Framework)
…
2
votes
How can I programmatically determine whether an MP3 file is CBR or VBR? (preferrably using c#)
Check this MP3Header Class, it has a method that tells you if the mp3 file is VBR, and all the mp3 …
10
votes
Can you mix .net languages within a single project?
You can mix languages in a single assembly with ILMerge …
2
votes
What’s the best way to learn .NET?
I can recommend you a book, C# for Java Developers, it can help you to get started, this book explains very well the …
1
vote
2
votes
Automated processing of an Email in C#
This library provides you basic support for the POP3 protocol and MIME, you can use it to check specified mailbox …
1
vote
C# 3.0 Anonymous Types: Naming
No, its not possible, spaces are not allowed in the names of members, you can use perhaps underscore or programmatically change the captions of your columns after the data is bound...
…
1
vote
Which LINQ syntax do you prefer? Fluent or Query Expression
I really like the Fluent syntax and I try to use it where I can, but in certain cases, for example where I use joins, I usually prefer the Query syntax, in those cases I find it easier to read, and …
1
vote
How can you reference code written in another language in the App_Code folder in ASP.Net?
Here is a very good example about mixing C# and VB in the same Web project...
The trick is done using the …
2
votes
Text input parser in c#
Here is a very interesting approach about importing tabulated data using Linq.
It' …
0
votes
Best way to connect to Interbase 7.1 using .NET C#
Check this providers:
Interbase and Firebird Developer's for Visual Studio .N …
1
vote
What is the quickest way to get the absolute uri for the root of the app in asp.net?
You can do it like this:
string.Format("{0}://{1}:{2}", Request.Url.Scheme, Request.Url.Host, Request.Url.Port)
And you'll get the …
5
votes
Check a string to see if all characters are hexadecimal values
public bool OnlyHexInString(string test)
{
// For C-style hex notation (0xFF) you can use @"\A\b(0[xX])?[0-9a-fA-F]+\b\Z"
return System.Text.RegularExpressions.Regex.IsMatch(test, @ …
