Primarily a .NET/SQL Server Developer (C#, ASP.NET MVC, Silverlight, WPF, WinForms, APIs, etc.), but Jack of all Trades when it comes to development.
I've dabbled in C, Adobe Flex, Flash, Ruby on Rails, Perl, PHP...
CV at http://careers.stackoverflow.com/Justin-Niessner
|
1d
|
|
answered | Newbie needs some assistance |
|
1d
|
|
comment |
Check What Letters are in a String @Renan - You could, but that wouldn't take culture into account. Using one of the Framework methods that properly handles culture is the preferred method. |
|
1d
|
|
comment |
Check What Letters are in a String @Andrew - IndexOf() will return the index of the match. If not match is found (the string does not contain the character that you're checking for), it will return -1.
|
|
1d
|
|
answered | Check What Letters are in a String |
|
1d
|
|
comment |
Combine multiple DataTables into one Are you trying to Union the data or Join based on the ItemID field?
|
|
Jun
15 |
|
awarded | Enlightened |
|
Jun
15 |
|
awarded | Nice Answer |
|
Jun
14 |
|
reviewed | Approve suggested edit on R error : unexpected '}' in "}" I don't see where my code is going wrong :( |
|
Jun
14 |
|
answered | MVC - Site still accessible if not logged in? |
|
Jun
14 |
|
revised |
remove portion of string that is found in a list Removing the LINQ tag as ForEach is a method of List rather than part of LINQ. |
|
Jun
14 |
|
answered | remove portion of string that is found in a list |
|
Jun
13 |
|
answered | Very simple attempt to deserialize JSON with JSON.NET does not work |
|
Jun
13 |
|
comment |
InvalidCastException on a list of objects @WiktorZychla - Fixed. |
|
Jun
13 |
|
revised |
InvalidCastException on a list of objects added 20 characters in body |
|
Jun
13 |
|
answered | InvalidCastException on a list of objects |
|
Jun
13 |
|
answered | LINQ GroupBy-Rank-Sum |
|
Jun
13 |
|
comment |
How do I find out the result from this C# code @user2042721 - Updated with a rudimentary looping solution. |
|
Jun
13 |
|
revised |
How do I find out the result from this C# code added 345 characters in body |
|
Jun
13 |
|
comment |
How do I find out the result from this C# code @user2042721 - That's because you don't call GroupBy on the student, you call it on the List<Student>.
|
|
Jun
13 |
|
comment |
How do I find out the result from this C# code @im_a_noob - Fixed. |