15,742,357 members
Sign in
Sign in
Email
Password
Forgot your password?
Sign in with
home
articles
Browse Topics
>
Latest Articles
Top Articles
Posting/Update Guidelines
Article Help Forum
Submit an article or tip
Import GitHub Project
Import your Blog
quick answers
Q&A
Ask a Question
View Unanswered Questions
View All Questions
View C# questions
View Javascript questions
View C++ questions
View Python questions
View Java questions
discussions
forums
CodeProject.AI Server
All Message Boards...
Application Lifecycle
>
Running a Business
Sales / Marketing
Collaboration / Beta Testing
Work Issues
Design and Architecture
Artificial Intelligence
ASP.NET
JavaScript
Internet of Things
C / C++ / MFC
>
ATL / WTL / STL
Managed C++/CLI
C#
Free Tools
Objective-C and Swift
Database
Hardware & Devices
>
System Admin
Hosting and Servers
Java
Linux Programming
Python
.NET (Core and Framework)
Android
iOS
Mobile
WPF
Visual Basic
Web Development
Site Bugs / Suggestions
Spam and Abuse Watch
features
features
Competitions
News
The Insider Newsletter
The Daily Build Newsletter
Newsletter archive
Surveys
CodeProject Stuff
community
lounge
Who's Who
Most Valuable Professionals
The Lounge
The CodeProject Blog
Where I Am: Member Photos
The Insider News
The Weird & The Wonderful
help
?
What is 'CodeProject'?
General FAQ
Ask a Question
Bugs and Suggestions
Article Help Forum
About Us
Search within:
Articles
Quick Answers
Messages
Comments by Nissim Salomon (Top 11 by date)
Nissim Salomon
8-Sep-13 4:20am
View
Try saving the Image to the disk before Invoke code.
Nissim Salomon
5-Sep-13 1:58am
View
Hi can you be more specific ? what part of the task you don't know how to do ?
Nissim Salomon
4-Sep-13 9:46am
View
I didn't try it but i think it does basically its a tool that exist in the market for quiet a lot. the first version was for a java framework and imported into .net
Nissim Salomon
3-Sep-13 3:34am
View
Hi, can you reproduce the problem using a simple application ? in case you do please post the code and the table structure and i will try to debug it
Nissim Salomon
3-Sep-13 3:26am
View
Hi, MSSQL expose a variety set of views called INFOMATION_SCHEMA you can used the INFOMATION_SCHEMA.COLUMNS in order to retrieve the column data
Nissim Salomon
1-Sep-13 0:40am
View
Hi
I'm facing some issues with Dynamic Code Generation can you please tell me how did you Dump the DynamicMethod IL code ? what kind of tools & commands did you use ?
another challange (if you will choose to accept it :-))
the following code generate a slower execution path method why is that ?
public static Action<tsourcetype, ttaregettype=""> CreateCopierUsingSyntexTrees<tsourcetype, ttaregettype="">()
{
List<expression> exprs = new List<expression>();
PropertyInfo[] sourceTypeProperties =
typeof (TSourceType).GetProperties(BindingFlags.Public | BindingFlags.Instance);
ParameterExpression sourceParam = Expression.Variable(typeof (TSourceType), "source");
ParameterExpression targetParam = Expression.Variable(typeof(TSourceType), "target");
foreach (PropertyInfo sourceProperty in sourceTypeProperties)
{
exprs.Add(Expression.Assign(Expression.Property(targetParam, sourceProperty.Name), Expression.Property(sourceParam, sourceProperty)));
}
BlockExpression body = Expression.Block(exprs);
return Expression.Lambda<action<tsourcetype, ttaregettype="">>(body, new[] {sourceParam, targetParam}).Compile();
}
Nissim Salomon
1-Sep-13 0:30am
View
Can you please be more specific about the problem ? are you using EF, ADO, NH ? please provide an example
Nissim Salomon
31-Aug-13 15:02pm
View
Hi
I'm facing some issues with Dynamic Code Generation can you please tell me how did you Dump the DynamicMethod IL code ? what kind of tools & commands did you use ?
Nissim Salomon
31-Aug-13 5:36am
View
Hi
I'm sorry but i don't understand what you are trying to do.
can you send me a reproduce code (just copy your code to a console app including the part that don't work)
I have deal with that kind of problems in the past i want to be sure that this is the case in order to give you the correct answer (if this is the situation)
Nissim Salomon
31-Aug-13 5:14am
View
Hi
First, I think the problem is at your end.
For example when I'm using your input (from the f section) I am getting the following result
3|4|5|6|7|8|9|10|11|12|13|14|15|16|17 as expected.
I don't think that the following problems relate to the use with regular expression.
second, you can use the string.IsNullOrEmpty instead of string.IsNullOrWhiteSpace (supported from .net framework 2.0)
Please copy the following code into a Console Application and let me know if the problems still exist
Nissim Salomon
29-Aug-13 9:53am
View
Hi What did you mean
1.do you want to expose the old W.S WebMethods as WCF OperationalContract ?
2.what is proxy classes is it the current client generated proxy classes ?
Show More