Home
Get Started
Learn
Downloads
AJAX
MVC
Community
Wiki
Forums
Sign in
|
Join
Home
›
ASP.NET Forums
›
Search
Search
You searched for the word(s): userid:512064
More Search Options
RSS Available
Matching Posts
Re: Should I use an abstract class or an interface?
You should probably have both . The interface then an abstract class for the common implementation of that interface.
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/25/2009
Re: Parallel computing in .net 3.5 Sp1 to read large chunk of textfile
1) why are you using a stringbuilder? My gut feeling is that no, parallelism wont really help your code. This looks like code that will be very IO bound. A very simple test would be to add another loop which simply reads the lines off the disk and throws them away. The difference in performance you see between the two loops is approximatly the difference in performance youd see from parallelizing.
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/17/2009
Re: Parallel computing in .net 3.5 Sp1 to read large chunk of textfile
From the sounds of it, you might have some luck with using the Jet text drivers and treating these files like a database source.
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/17/2009
Re: Unable to cast object of type 'SoftwareArchitects.Web.Configuration.CachingSection' to type 'SoftwareArchitects.Web.Configuration.CachingSection'
This generally indicates a versioning issue where you have two different versions of the assembly.
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/17/2009
Re: Parallel computing in .net 3.5 Sp1 to read large chunk of textfile
basically you'd take the info from Much ADO about text files to construct your connection string and feed that connection string into an OleDbConnection .
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/17/2009
Re: Reading Text file
See: http://msdn.microsoft.com/en-us/library/system.net.webrequest.create.aspx
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/16/2009
Re: Reading Text file
Is this a homework assignment?
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/11/2009
Re: IENumerable selecting indexes
If you're trying to implement paging w/ linq to sql or entity framework use: var selection = products.Where(...).Skip(pageIndex * pageSize).Take(pageSize); The other two solutions will perform the full query and filter the indexes on the app-server where as linq to sql will emit sql to only bring back the results you want which will perform much better.
Posted to
C#
(Forum)
by
JeffreyABecker
on 11/11/2009
Re: Performance metrics/baseline tools
I'm not sure I understand the question. It looks to me like the type of data you're looking to gather would require specifically instrumenting an application. Are your users complaining about or do they percive the site as 'slow'?
Posted to
C#
(Forum)
by
JeffreyABecker
on 10/30/2009
Re: ASP.net C# Cron Service
I wrote a custom scheduler for a place once. It sucked. This type of service always ends up needing a data-store of some sort. If the db requirement is an issue consider that Quartz can be configured to use SQLite as its data-store. Also consider: Dont reinvent the wheel unless you plan on learning more about wheels . If learning more about how this type of application works is your goal. By all means write your own.
Posted to
C#
(Forum)
by
JeffreyABecker
on 10/27/2009
Page 1 of 289 (2884 items) 1
2
3
4
5
Next >
...
Last »
Channel 9:
C9 Lectures: Dr. Erik Meijer - Functional Programming Fundamentals Chapter 9 of 13
TechNet Edge:
Managing Your Virtual World - Tech Focus November 2009 Part 2
ASP.NET:
Silverlight and RIA Services: Implementing Search
Channel 9:
C9 Lectures: Brian Beckman - Covariance and Contravariance in Physics 1 of 1
Channel 9:
Set Your Data Free
Channel 9:
Implementing a Silverlight SharePoint WebPart with Visual Studio 2010
WindowsClient:
New WPF Showcase Addition: Enterprise
Channel 9:
Reactive Extensions API in depth: Contract
WindowsClient:
Concluding "New WPF Features" Series
WindowsClient:
Introduction to TestApi – Part 5: Managed Code Fault Injection APIs
ASP.NET:
T4MVC now has a real home and a dedicated forum!
TechNet Edge:
Windows Server 2008 R2 : New Power Management Features
ASP.NET:
Web Deployment Painkillers: VS 2010 & MS Deploy
WindowsClient:
Application Accessibility Testing
WindowsClient:
Prism & WCF RIA Services
Channel 9:
Sharepoint 2010 and Claims-Based Identity
WindowsClient:
IRhetoric Ported To BlogEngine.NET
WindowsClient:
PDC Recap and More
Channel 9:
Reactive Extensions API in depth: Primitives
WindowsClient:
New WPF Features: MultiTouch
Microsoft Communities
ASP.NET
Channel 8
Channel 9
Channel 10
IIS.NET
Silverlight
TechNet Edge
WindowsClient
Mix Online