| bio | website | |
|---|---|---|
| location | ||
| age | ||
| visits | member for | 11 months |
| seen | 19 hours ago | |
| stats | profile views | 161 |
C# developer
Email: w4lkh4rd@gmail.com
|
2d |
answered | Difficulties with DateTime |
|
2d |
revised |
SqlDataReader returns null added 4 characters in body |
|
May 14 |
answered | How to calculate with text boxes and skip empty text boxes? |
|
May 14 |
awarded | Enlightened |
|
May 14 |
awarded | Nice Answer |
|
May 13 |
answered | Accepting a non fixed length group of parameters in a function |
|
May 13 |
answered | Why does this number gets detected as bool? |
|
May 8 |
comment |
Position in a string C# Thanks, fixed it |
|
May 8 |
answered | Position in a string C# |
|
May 8 |
answered | How can I make the same code repeat until the player answers differently? |
|
May 8 |
comment |
Why does removing new-lines from my verbatim string return me only the last line? @JeffWalkerCodeRanger you're wrong. All strings, by default use UTF-16, please refer to this documentation page. C# supports two forms of string literals: regular and verbatim. Both of which are using same encoding. |
|
May 8 |
answered | C# Inheritance, adding new methods |
|
May 7 |
revised |
Improving my linq to object performance added 2 characters in body |
|
May 6 |
comment |
how can I return a certain amount of items from my db using linq statements in c# Thanks @GrantWinney I should've mention it in my answer. So here's a little example: Query().Skip(10).Take(10) |
|
May 6 |
answered | how can I return a certain amount of items from my db using linq statements in c# |
|
May 4 |
revised |
how to send data to php webservice using GET method in JSON Format in C# added 6 characters in body |
|
May 3 |
answered | PHP Array and unset function |
|
May 3 |
comment |
jQuery Ajax response are not asynchronous There must be something wrong with your second request (or it's relation to first one), can you post it? Also show us how you're executing both requests. |
|
May 3 |
revised |
jQuery Ajax response are not asynchronous added 3 characters in body |
|
May 2 |
comment |
Search for same substrings in a list of strings @SergiuCojocaru then you want to find common substrings, which is too big (at least without some code from you) to answer in this question. However I can direct you to this question |