Join Now
|
Login
home
login
join now
.NET pattern framework
javascript + jquery patterns
database pattern framework
products and pricing
.NET design patterns
javascript design patterns
javascript tutorial
sql + database tutorial
connection strings
visual studio shortcuts
c# coding standards
html color codes
all references
explore
questions
ask question
tags
users
contact us
training courses
schedule
registration
about us
training and education for professional developers
login
join now
Home
Questions
Tags
C#
Tagged with:
C#
80
records found
date
active
views
answers
votes
Career path: C# versus VB.NET
Hello, I am coming from an assembly / C background and I am ready to move into building databased business applications in .NET. My plan is to go as far as possible and become an .NET architect ...
Aug 30, 2010
by
Henry Wong
69
95.7
Last:
Mar 06, 2013
by
Doraemon D
50
50
Design Patterns
C#
VB.NET
Career Development
Views
16.5K
Answers
14
Votes
0
Answer
Code
Follow
0
When would you use an Abstract class?
Hello everyone, This is probably a very easy question you guys, but when would we need to use an Abstract class? Thank you ...
Feb 02, 2011
by
Satya Chauhan
50
50
Last:
Feb 23, 2011
by
Vivekananda P
50
50
C#
abstract
Views
18.6K
Answers
7
Votes
0
Answer
Code
Follow
0
Static data access objects variables in ActionService for standalone application
Hi, When the Patterns In Action sample is run a standalone mode, should the Static data access objects variable changed to non static ones? // Create static data access objects private static readonly ...
Mar 09, 2011
by
London UK
56
94.4
Last:
Mar 10, 2011
by
Dan McMillan
750
99.9
C#
Entity Framework
Views
4.7K
Answers
5
Votes
0
Answer
Code
Follow
0
PIA: Error in Data Access Layer when using SQLServer.ADONET
Hi all, The Version property (string) comes from a TimeStamp in the SQL Database. The Take() and Make() methods on the CustomerDao class use the extension methods AsByteArray() and AsBase64String() ...
Jul 17, 2012
by
Martyn Reid
63
95.5
Last:
Aug 16, 2012
by
Martyn Reid
63
95.5
C#
patterns in action 4.0
Data Tier
Views
3.6K
Answers
5
Votes
0
Answer
Code
Follow
1
What design pattern(s) to use to build a extractor for a flat file based on a specification?
I have a flat file where each row has a specification. Say the first row specification level 100 a header row and all 200s are data rows and level 199 is a file summary. I have created a data table that ...
Jun 16, 2011
by
Tony Blogumas
50
50
Last:
Mar 15, 2012
by
Tony Blogumas
50
50
C#
Business Tier
Flat File Parser
Views
5.6K
Answers
4
Votes
0
Answer
Code
Follow
0
camelCase - PascalCase vs. CamelCase - pascalCase
The article on c# coding standards in the reference section of dofactory states: do use CamelCasing for class names and method names. do use pascalCasing for method arguments ...
Jul 31, 2010
by
Dirk Andries
70
95.7
Last:
Aug 25, 2010
by
Dan McMillan
750
99.9
DoFactory
Coding Standards
C#
Views
12.7K
Answers
4
Votes
2
Answer
Code
Follow
0
Singleton Design Pattern
Hello, I have a question about the Singleton design pattern. Is Singleton pattern about maintaining one instance of a class or is it about maintaining one state of a class. What I can think of is ...
May 16, 2010
by
Ram Pandey
70
95.7
Last:
May 21, 2010
by
Bhupendra Sinha
70
95.7
C#
Design Patterns
Singleton Pattern
Views
4.8K
Answers
3
Votes
1
Answer
Code
Follow
0
MVC Example
Hello, I am new to C# , I have heard about MVC pattern. Can some please share with me an MVC C# code sample (basic). I would very much appreciate it. ...
May 17, 2010
by
Ali Momin
60
95.3
Last:
May 20, 2010
by
King Wilder
568
99.9
C#
MVC
Beginner
Views
19K
Answers
3
Votes
1
Answer
Code
Follow
0
How to build a custom .Net Framework ?
Hi All, Could you please share your thoughts (Guidelines, best practices) to create a custom .Net Framework (preferably C#). Thanks and Regards ...
Feb 28, 2011
by
Tarriq Ferrose Khan
80
96.3
Last:
Mar 09, 2011
by
Rajesh Pillai
1,354
100.0
C#
.Net Framework
Design Patterns
Views
6.4K
Answers
3
Votes
0
Answer
Code
Follow
0
Why? C# abstract classes without abstract members
I am familiar with abstract classes, interfaces, and the like. What is not clear to me is why anyone would create a C# abstract class that does not have abstract members? (the C# compiler allows this). ...
Mar 15, 2011
by
Juan Perez
129
96.7
Last:
Mar 16, 2011
by
Vivekananda P
50
50
C#
Language
abstract
Views
4.2K
Answers
3
Votes
0
Answer
Code
Follow
0
How to: Deserialization of nested JSON
I am receiving the JSON formatted string from a web service over the Internet. It is roughly formatted like so: { "version" : 2, "query" : "Companies, ...
Mar 24, 2011
by
Leo Benson
122
96.7
Last:
Sep 09, 2011
by
Kevon Hayes
68
95.6
C#
JSON
Parsing
Views
6K
Answers
3
Votes
0
Answer
Code
Follow
0
Iphone App development tools
Hallo All: Please help with what tools I need to create an Iphone application that retrieves real-time sales data from my restaurant database. I am an entry level C# developer.. Thanks so ...
Feb 06, 2011
by
Sam Yonis
60
95.3
Last:
Feb 20, 2011
by
Hans-Petter Eitvet
70
95.9
iPhone
Tools
C#
Views
3.8K
Answers
3
Votes
1
Answer
Code
Follow
0
Which patterns to use for a Test Automation Framework?
I am writing a Test Automation Framework that involves automating testing a Winforms and WPF based application having 200 screens. The Automation Framework should do the control clicks and screen actions just as a ...
Feb 14, 2011
by
Prasenjit Naskar
50
50
Last:
Mar 08, 2011
by
Robert Blixt
1,128
99.9
Testing
Framework
C#
Views
4.5K
Answers
3
Votes
0
Answer
Code
Follow
0
Which Design Pattern do I need for this?
Hi, I am building a WinForm application. I have a Main Form that contains many many other Forms with the same functionality except the name and the database connection. I don't know how ...
Jun 14, 2011
by
David Kt
58
94.5
Last:
Jul 05, 2011
by
Venkatesh D
60
95.3
C#
.NET 4
Winforms
Pattern
Views
3.8K
Answers
3
Votes
0
Answer
Code
Follow
0
How to control access to Interface implementations
I have a question related to Interfaces. Suppose I have two interfaces (Interface1 and Interface2) and each has three different methods. I am implementing both interfaces in a class named ClassY. My ...
Jun 29, 2011
by
Vishal Srivastava
50
50
Last:
Aug 18, 2011
by
Danut Prisacau
108
96.7
C#
Interfaces
Implementation
Views
3.3K
Answers
3
Votes
0
Answer
Code
Follow
0
1
2
3
4
5
6
Next
15
30
50
Per Page
return to top