473,986 Members | 1,466 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

framework development c#


Fellow programmers,

How many people are paid to write frameworks in c# ?
What kind of frameworks are they developing ?

Regards,

Rick

Dec 22 '05 #1
6 1752
"Rick Elbers" <ri*********@ch ello.nl> a écrit dans le message de news:
28************* *************** ****@4ax.com...

| How many people are paid to write frameworks in c# ?
| What kind of frameworks are they developing ?

I am. Value Type Framework, Validation Framework, Object Persistence
Framework and Model View Presenter.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Dec 22 '05 #2
Joanna,

Thanks for your response. What does teamB behind your name means ?
I see that you are writing what I would call technical support
frameworks. Btw I dont consider MVP a framework but more a pattern.
Do you also know about people who write domain specific frameworks
in c#?

Rick

On Thu, 22 Dec 2005 07:52:58 -0000, "Joanna Carter [TeamB]"
<jo****@not.for .spam> wrote:
"Rick Elbers" <ri*********@ch ello.nl> a écrit dans le message de news:
28************ *************** *****@4ax.com.. .

| How many people are paid to write frameworks in c# ?
| What kind of frameworks are they developing ?

I am. Value Type Framework, Validation Framework, Object Persistence
Framework and Model View Presenter.

Joanna


Dec 23 '05 #3
Rick Elbers <ri*********@ch ello.nl> wrote:
Thanks for your response. What does teamB behind your name means ?


See

http://support.borland .com/entry!default.j spa?categoryID= 177
&externalID=296 &fromSearchPage =true

(aka http://tinyurl.com/b54lk)

--
Jon Skeet - <sk***@pobox.co m>
http://www.pobox.com/~skeet Blog: http://www.msmvps.com/jon.skeet
If replying to the group, please do not mail me too
Dec 23 '05 #4
"Rick Elbers" <ri*********@ch ello.nl> a écrit dans le message de news:
me************* *************** ****@4ax.com...

| Thanks for your response. What does teamB behind your name means ?

See John's reply :-)

| I see that you are writing what I would call technical support
| frameworks. Btw I dont consider MVP a framework but more a pattern.

MVP may be a pattern, but it can be implemented by a framework that can be
re-used time and time again. True Design Patterns are usually coding
guidelines that have to be written anew for every use; my MVP framework is a
standard code library that can be extended, but that doesn't need re-writing
every time I use it.

| Do you also know about people who write domain specific frameworks
| in c#?

Certainly, I do that as well. I work as a consultant and OO architect for
companies who want their software writing or refactoring using OO design
patterns, frameworks and principles.

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Dec 23 '05 #5
On Fri, 23 Dec 2005 14:16:50 -0000, "Joanna Carter [TeamB]"
<jo****@not.for .spam> wrote:
"Rick Elbers" <ri*********@ch ello.nl> a écrit dans le message de news:
me************ *************** *****@4ax.com.. .

| Thanks for your response. What does teamB behind your name means ?

See John's reply :-)

| I see that you are writing what I would call technical support
| frameworks. Btw I dont consider MVP a framework but more a pattern.

MVP may be a pattern, but it can be implemented by a framework that can be
re-used time and time again. True Design Patterns are usually coding
guidelines that have to be written anew for every use; my MVP framework is a
standard code library that can be extended, but that doesn't need re-writing
every time I use it.
Therefore it has nothing to do with a framework. The Design Pattern
construct is widely abused as coding guideline while it used to be a
gate for your thought process. Its about finding the timeless way of
coding. Ofcourse for .net you have to make a few extensions to the
framework to make it support true MVP. That could be worthwhile.

Apart from that to the original question: Their are quit a few domain
specific design patterns for sometimes really difficult domain
specific problems mostly put together in pattern catalogs but I never
ever see anyone in c# refer to those highly specific patterns or
domains.


| Do you also know about people who write domain specific frameworks
| in c#?

Certainly, I do that as well. I work as a consultant and OO architect for
companies who want their software writing or refactoring using OO design
patterns, frameworks and principles.
Interesting, what kind of domain specific frameworks are written in c#
?

99% of what i see is application development, 90 % of which
esssentially 2-tier administrative. I havent seen something "smart" in
c# applications for a long time. That doesnt mean that its easy to
make good user interfaces for dataentry and dataview, but that the
applications itself are merely trackers of business processes and
rather dumb in that they dont give added value to the process besides
persistence and overview. OO design then is merely waste of time and
effort.

I am looking for smart frameworks or applications in c# in which
processes can really be automated or get a quality boost by the
applications..d o you know any( MVP as variant of MVC is a very bad
call their since its mostly and most strongly used in administrative
apps or at least in the less interesting part of smart applications ).


Joanna

Rick

Dec 26 '05 #6
"Rick Elbers" <ri*********@ch ello.nl> a écrit dans le message de news:
81************* *************** ****@4ax.com...

| >MVP may be a pattern, but it can be implemented by a framework that can
be
| >re-used time and time again. True Design Patterns are usually coding
| >guidelines that have to be written anew for every use; my MVP framework
is a
| >standard code library that can be extended, but that doesn't need
re-writing
| >every time I use it.
|
| Therefore it has nothing to do with a framework.

A framework is a library of code that can be used over and over again
without having to recode it, as opposed to a pattern which must be coded
every time.

| Of course for .net you have to make a few extensions to the
| framework to make it support true MVP. That could be worthwhile.

You can start by working from the essential MVP requirements and then write
a framework based on that pattern. Certainly, MVP could be described as a
pattern but when it is executed in a particular programming environment, it
then becomes a framework.

| Apart from that to the original question: Their are quit a few domain
| specific design patterns for sometimes really difficult domain
| specific problems mostly put together in pattern catalogs but I never
| ever see anyone in c# refer to those highly specific patterns or
| domains.

If patterns are domain specific, it is unlikely that they will appear in too
many catalogues as catalogues are usually generic by their nature.

| Interesting, what kind of domain specific frameworks are written in c#
| ?

I would suppose that, as C# is an all-purpose programming language, that you
could write whatever frameworks that you required. I certainly haven't found
any domain that I could not code in C#.

| 99% of what i see is application development, 90 % of which
| esssentially 2-tier administrative. I havent seen something "smart" in
| c# applications for a long time. That doesnt mean that its easy to
| make good user interfaces for dataentry and dataview, but that the
| applications itself are merely trackers of business processes and
| rather dumb in that they dont give added value to the process besides
| persistence and overview. OO design then is merely waste of time and
| effort.

I don't understand your line of argument here, how does the type of
application invalidate the use of good OO design principles ? Good OO
applications ensure that business logic is appropriately allocated to the
classes that are responsible for the management of the data related to that
business logic; instead of the standard data in a datbase, somle logic in
stored procs and the rest in the GUI.

I have consulted for many companies that have written "simple" "non-OO"
applications that have ended up tying themselves in knots trying to avoid OO
and ending up with unmaintainable, un-upgradable applications. Once they
enforce OO design principles, all of a sudden they end up with applications
that are easy to maintain, debug and upgrade and that have measurably less
bugs at release date.

| I am looking for smart frameworks or applications in c# in which
| processes can really be automated or get a quality boost by the
| applications..d o you know any( MVP as variant of MVC is a very bad
| call their since its mostly and most strongly used in administrative
| apps or at least in the less interesting part of smart applications ).

I have used MVP in a variety of different applications. The purpose of MVP
is to allow the decoupling of the UI layer from the business layer,
regardless of the business domain. I have used MVP to implement the UI for
an application that monitors in real-time, the interaction between injection
moulding machines and scheduling software using file transfer messaging
protocol.

Does that count as an interesting domain ?

Joanna

--
Joanna Carter [TeamB]
Consultant Software Engineer
Dec 26 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

28
4850
by: Admin | last post by:
I am doing some research for a Python framework to build web applications. I have discarted Zope because from what I've read, the learning curve is too steep, and it takes more time to build applications in general with Zope. I have kept the following: - PyWork - http://pywork.sourceforge.net (Not sure if it's mature) - Django - http://www.djangoproject.com (Looks interesting) - CherryPy - http://www.cherrypy.org (Unsure)
2
1790
by: Tomas Vera | last post by:
Hello All, I'm running into a problem that I don't know how to solve (properly, at least). Our web servers are running Win2K and have Framework v1.0.3705 running on them. We have a DLL that we use to verify product registration information from our clients.
3
1728
by: Thom Little | last post by:
I have ASP.NET websites deployed on a number of servers. Thee were developed with Visual Studio 2003. Is it true that Visual Studio 2005 only supports .NET Framework 2.0 and I will be required to have Visual Studio 2005 for those ASP.NET websites and Visual Studio 2003 for my currently deployed websites? Is there a summary document listing what is provided in Visual Studio 2005? Apparently there is support for .NET Framework 1 and 2,...
23
1950
by: Nak | last post by:
Hi there, Has anyone any ideas if the next Framework will be an update to version 1.1 or another completely new install so that people have 3 Frameworks on their system? And can VS.NET 2003 be set to use any Framework other than 1.1? Nick. --
5
2178
by: David Moskowitz | last post by:
Infoblazer LLC is pleased to release the XX Framework under the LGPL open source license. Version 1.0 is available for immediate download. The XX framework is a configurable, XML-centric implementation of the MVC development paradigm that incorporates simple and commonly used patterns of development. The framework promotes a use case oriented development approach.
2
1540
by: Jeremy S. | last post by:
What might be a relatively useful or effective way to explain what a "Framework" is to non technical business managers. My situation is that I've been presenting the .NET Framework to these sorts of people in terms of the things it includes (a runtime environment, application development environment complete with multiple languages, an IDE - yes I know some people say it's not really part of the .NET Framework, per se). While it's how I've...
0
1829
by: innovasys | last post by:
TORQUAY, DEVON, UK - Innovasys announced the release of Document! X 5, the fifth version of the documentation solution of choice for developers using Microsoft Visual Studio or the .NET Framework. Document! X 5 automatically produces professional quality technical documentation and on-line help for Microsoft .NET Framework assemblies (.NET Framework 1.0, 1.1 and 2.0 are all supported), COM components and controls, Visual Basic source code,...
0
1610
by: fionab | last post by:
Reading, Berkshire, UK - Crainiate Software announce the release of Objecto Framework 1.0, a new component framework 5 years in development, designed to make it easy for programmers to create agile persisted business objects that are reusable, customisable and scalable, without additional developer tools. Objecto uses new object persistence and managed database technology to allow developers to create objects that are seamlessly...
1
2728
by: SP | last post by:
I have a web service application which uses 3rd party assemblies. I recently upgraded my solution to use .NET Framework 2.0 instead of .NET Framework 1.1. The 3rd party assemblies that I refer are built on .NET Framework 1.1 (but they are supposed to work under .NET Framework 2.0) Since upgrading the solution, I get an error saying : System.Web.Services.Protocols.SoapException: Server was unable to process request....
7
1631
by: Paul | last post by:
I have been coding apps with PHP for several years. But I am getting more involved in larger and more complicated PHP applications and want to use best practices. I use Eclipse's PHP IDE. I doubt I am using it to its full extent but I want to learn more about, and compare and contrast, frameworks versus IDE versus templating systems and MOST IMPORTANTLY learn what is going to save me time. I know technically the IDE is the tool in...
0
10394
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10204
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
11892
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
7671
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
6475
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
6624
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
5220
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
4809
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
3813
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.