|
I have a solution in VS 2008 which has one web project and 3 Class libraries as 3 different Projects. One project is for DataAccess and one is for BusinessLogic.
I have a class in DataAccessLayer. From there when I am trying to access the Class of BusinessLogic...
Started by Shyju on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
You need to add reference to this project don't have to add assembly files directly... .
You'll need to add a reference to the project containing the BusinessLogic class in the DataAccess BusinessLogic class, even if it does use the same namespace.
|
|
What are your favorite lesser-known .NET Base Class Library classes and methods?
Started by John Sheehan on
, 81 posts
by 68 people.
Answer Snippets (Read the full thread at stackoverflow):
System.Web.UI.WebControls.MailDefinition
"The MailDefinition class can be used by controls to create a MailMessage the MailDefinition class to simplify creating predefined e-mail messages to be sent by a control."
For some reason(this....
|
|
What's the difference between the two? Can we use them interchangeably?
Started by Joan Venge on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Basically they took the BCL and made it go to 11!
The Base Class Library (BCL) is literally
The Framework Class Library (FCL) is the wider library that contains the totality: ASP.NET, WinForms manipulation....
Library.
|
Ask your Facebook Friends
|
I posted a question a few months ago about sharing resource dictionaries across assemblies . It turns out you can do that using the Component Resource Key markup extension. At the time, I could only get it working with a WPF Custom Control project, not...
Started by David Veeneman on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
Here is the solution: Add the DLL refs and the Themes/generic.xaml file to the plain Class LibraryApart from the extra WPF references, the WPF Custom Control Library template has an extra attribute.
|
|
Is ADO.NET and ASP.NET a part of Base Class Library ? The information given in wikipedia looks ambiguous to me. In the figure , it is shown as a separate block. What is the difference between Base Class Library(BCL) and Framework Class Library(FCL)? Is...
Started by n0vic3c0d3r on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
The ....
The Base Class Library is the main core part of the framework, core types, etc.
This includes ADO.NET, ASP.NET, WPF, Windows Forms, etc.
Class Library is everything included in the entire .NET framework installation.
|
|
Hi, Say we have a class library project containing 10 classes. Now I want to create a dll which should contatin only 6 classes out of those 10. How we can achieve this?
Started by Myth on
, 7 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
#define ClassA #if ClassA class A { } #endif #undef ClassB #if ClassB class B { } #endif
Class A would....
That way compiler directives.
Project and have two "class library" binaries, one with six and one with four.
|
|
I am working in VS2008. I have a custom class library (CL1) which references another custom class library (CL2). This ends up having CL1 and CL2 in my release folder. Now the consumer of CL1 needs to include two dll's in the project which I think is not...
Started by amrahs on
, 8 posts
by 7 people.
Answer Snippets (Read the full thread at stackoverflow):
If your class design really requires that your classes.
In my opinion, this is a bad idea.
References.
|
|
I'm looking for some ideas on how to do this in the most efficient way.
I am replacing an old COM library that is used in a large legacy ASP website with a .NET library written in C#. The old library consisted of just two classes. I've rewritten this ...
Started by Frank Hale on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
This will allow you not to go.
I guess inheriting from your master class is the better approach.
|
|
I hear the whole day the terms class library, base class library, Framework, ...
What highlights a framework and what a base class library?
Started by Peter Gfader on
, 10 posts
by 10 people.
Answer Snippets (Read the full thread at stackoverflow):
The ....
A "base" class library might mean several things depending on the context; it could refer that a class library is like being able to eat cheese and drink wine, whereas a framework is like program.
Of libraries.
|
|
Can anyone tell me how to show alert message inside the .cs file of class library project in c#?
I am calling a method of cs file in classlibrary project. Whenever the control comes to the alert message statement inside the method, alert message should...
Started by Rupa on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
It sounds like your class library method....
Your class library method should return the error to the caller, and it's upBe careful about putting too much UI code in your class libraries.
It to the user as needed.
|