Tagged Questions
The class-library tag has no wiki summary.
29
votes
4answers
29k views
How can I use external JARs in an Android project?
I have created an Android project and added an external JAR (hessian-4.0.1.jar) to my project. I then add the JAR to the buildpath and check it of in Order and Export.
Order and Export is ignored it ...
11
votes
3answers
3k views
WCF Service Library vs Class Library project types
What does a WCF Service Library do that a regular class library doesn't?
Edit: I posted my own answer. Am I missing anything? Are they fundamentally both just class libraries with a few template ...
11
votes
1answer
9k views
Adding System.Web.Script reference in class library
I am currently moving code from my app_code folder to a class library. I have tagged several methods with [System.Web.Script.Serialization.ScriptIgnore] attributes. My class library cannot see this ...
9
votes
9answers
10k views
Java Array sort: Quick way to get a sorted list of indices of an array
The problem: Consder the following floats[]:
d[i] = 1.7 -0.3 2.1 0.5
What I want is an array of int[] that represents the order of the original array with indices.
s[i] = 1 3 0 ...
8
votes
4answers
172 views
How should I store my custom classes?
I've gotten to the point where I have made a few classes that I have found to be rather useful for a variety of different projects, they're either extensions of the already existing .Net ones or ...
8
votes
3answers
2k views
Development/runtime Licensing mechanism for a C# class library?
I'm developing a .Net class library (a data provider) and I'm starting to think about how I would handle licensing the library to prospective purchasers. By licensing, I mean the mechanics of trying ...
8
votes
9answers
2k views
What is the difference between a class library and a framework
I hear the whole day the terms class library, base class library, Framework, ...
What highlights a framework and what a base class library?
7
votes
4answers
98 views
why extension methods in C# Class Libraries
I did go through some MSDN documentations. I found extension methods also documented there.
I didn't understand, why these base class libraries have extension methods? when they could have been added ...
7
votes
9answers
5k views
How can I call C# extension methods in VB code
I have a class library with some extension methods written in C# and an old website written in VB.
I want to call my extension methods from the VB code but they don't appear in intelisense and I get ...
7
votes
14answers
3k views
best library to do web-scraping
I would like to get data from from different webpages such as addresses of restaurants or dates of different events for a given location and so on. What is the best library I can use for extracting ...
6
votes
3answers
606 views
How can I make a .NET class library read its own configuration file?
I have a .NET class library that provides a set of helper functions that are used by several Web Services. This class library must store a single setting, specifically, a connection string, which need ...
5
votes
3answers
60 views
Logging throughout class library without references passes
I have a class library in C# and it does lots of different functions for me. I want to be able to log throughout the class, however, I really don't want to have to pass instances of the logging ...
5
votes
3answers
565 views
Visual Studio: how to debug a library with an external executable?
I am developing a class library. The library is to be used by another program, an .exe with no source code. The library file location is passed as a parameter to this exe, for example by running: ...
5
votes
4answers
526 views
How to create a custom .NET base class library (BCL) aka mscorlib replacement?
Does anybody know how to make a custom BCL work with the stock CLR? How to discover existing the most essential ties between CLR and BCL and reuse them?
Here is what I have so far: ...
4
votes
3answers
81 views
MIDIHDR Problems
I am trying to write a wrapper library for MIDI functions in WinMM.dll, but I am having trouble with MIDI long messages. I found this in PIvnoke.net (I added the first line myself):
...
4
votes
1answer
68 views
Updating C++ Class Libraries
I've got a shared object with a selection of classes performing various tasks. I'm wondering what are some of the best practices in updating these libraries without effecting those that consume them. ...
4
votes
4answers
157 views
when to use multiple class libraries?
When should I use multiple class libraries in .NET. I have a situation where I need to use the functionalities of Microsoft Office Object Model to check certain attributes of Microsoft Office files. ...
4
votes
3answers
132 views
C++ Avoiding library linking
I currently have a c++ setup like the following
class FlowController
{
public:
//...
private:
cntrl::OneWayValve _intake;
}
As you can see i'm using a cntrl::OneWayValve instance ...
4
votes
3answers
679 views
How to convert a Class Library project to a Web Application project?
Long story short, because of some issues with architecture and the fact that someone already put a few .aspx files in a class librarry, I'd like to just finish off the change and convert a class ...
4
votes
1answer
100 views
how to call any method of Project from classlibrary?
I have Class Library Where a class of multithreading Of Producer and consumer based.
private void WorkDeQueue()
{
while (true)
{
string Url = null;
lock ...
4
votes
1answer
481 views
asp.net MVC - Can I reference views from a class library?
In an asp.net MVC application, is it possible to reference views from a class library in the same way that it's possible to reference a class library of server controls or user controls in Web Forms ...
4
votes
3answers
2k views
Class library with service references
I have a class library (.NET) with a reference to a web service (in some server, not a project in the same solution). The class library has a class that is exposed to COM. This class invokes the web ...
4
votes
2answers
592 views
Where is the implementation of InternalEquals(object objA, object objB)
while diassembling the .Net Source Code using Reflector, I came upon the Equals implementation in the Object Class and it refers to
bool InternalEquals(object objA, object objB);
Which again ...
4
votes
3answers
726 views
Using C++ classes in .so libraries
I'm trying to write a small class library for a C++ course.
I was wondering if it was possible to define a set of classes in my shared object and then using them directly in my main program that ...
3
votes
3answers
185 views
Decrypting an encrypted password from ASP.NET Membership using RijndaelManaged
The bottom line is to create a custom FTP Authentication Provider. In order to do this one must inherit from IFtpAuthenticationProvider interface and then register that assembly in GAC. After that the ...
3
votes
3answers
210 views
Unhandled Exceptions in C# Class Library for Logging Purposes
I am new to software development and also new to stackoverflow, so go easy on me.
BACKGROUND: I am developing a C# class library that processes xml messages sent by a third party application over ...
3
votes
6answers
69 views
How should a class library present a notification to the user/UI?
Something occurs that is more or less expected with normal use of a .NET library you are writing. You need to notify the user/UI/caller that this event has occurred, even though it is expected and ...
3
votes
3answers
142 views
Keeping namespaces for internal classes from appearing in intellisense
I am writing a class library that contains classes with purely internal members. I have these divided into namespaces. There are no public or protected members in these internal classes.
The thing is, ...
3
votes
7answers
2k views
app.config for a class library
I cannot see a app.config file generated for a class library by the VS2008 wizard. In my research i found that in an application only one app.config exists.
Is it a bad thing to add a app.config ...
3
votes
1answer
882 views
Can an ASP.NET MVC3 Controller (and View?) be redistributed as a class library dll?
is it possible to add a single Controller and possibly a view or two, in a class library ... which could then be redistributed (ie. via NuGet) and reused in various applications?
I'm thinking of ...
3
votes
2answers
797 views
Passing arguments when loading custom CodeIgniter library
I'm trying to implement a class I've written as CodeIgniter library.
Somehow I can't get CI's load() method to pass multiple arguments to the class's constructor function.
My class is designed to ...
3
votes
2answers
233 views
Expose a class library as a “WCF Data Service”
Is it possible to expose a .NET (class) library through a WCF Data Service ? Makes this scenario sense ? Or is the usage of pure WCF the best and only way in this case ?
Background: I have several ...
3
votes
2answers
83 views
How to Decide when to Implement a DLL?
At which point do you decide that some of your subroutines and common code should be placed in a class library or DLL? In one of my applications, I would like to share some of my common code between ...
3
votes
1answer
200 views
.NET - Storing An App.config With A Class Library
This seems to be asked a lot on the internet, but so far my research hasn't produced a solution. (And, at least for now, I haven't accepted "it can't be done" as a solution.)
At its simplest ...
3
votes
1answer
547 views
Using ASP.Net MVC Data Annotation outside of MVC
i was wondering if there is a way to use ASP.Net's Data annotation without the MVC site.
My example is that i have a class that once created needs to be validated, or will throw an error. I like the ...
3
votes
3answers
116 views
Does java have a class that represents a timer?
I'd like a timer class that allows me to call:
.start() .getElapsedTime() .stop() .reset()
Does Java have such a class, or do I need to use my own (which I've already written).
...
3
votes
2answers
500 views
Different configuration settings per developer for c# class library
We're a small team, working on a asp.net web project, as well as service, both projects dependent on a shared class library.
We'd like to have the class library settings different per developer (and ...
3
votes
3answers
346 views
Why is this class library dll not getting information from app.config
I am developing a custom HttpHandler, to do so I write a C# Class Library and compile to DLL.
As part of this I have some directory locations which I want not hard coded in the app, so i'm trying to ...
3
votes
1answer
437 views
How to re-use ASP.NET .aspx or .ascx files?
I know if someone wants to re-use some classes (not UI), he must gather all of them and put in a Visual Studio Class Library, build it to some dells and distribute these dlls. In this approach there ...
3
votes
1answer
128 views
Mercurial: Class library that will exist for both .NET 3.5 and 4.0?
I have a rather big class library written in .NET 3.5 that I'd like to upgrade to make available for .NET 4.0 as well.
In that process, I will rip out a lot of old junk, and rewrite some code to ...
3
votes
4answers
687 views
Best practices to turn a .NET class library into a multithreaded .NET class library
I have some C# class libraries, that were designed without taking into account things like concurrency, multiple threads, locks, etc...
The code is very well structured, it is easily expandable, but ...
3
votes
2answers
1k views
Java/Eclipse equivalent of Visual Studio Console app + Class Library solution
I'm a .Net developer, but for my current project I have to create some Java code. I did some Java coding in the past (I even learned OOP using Java), but am new to Eclipse, which I have to use.
I ...
3
votes
2answers
190 views
What are best practises for developing class library in general and database layer specifically?
I am going to develop a database layer to expose set of functionlaity that will provide reading and writing into our database.
I have set of questions related to this, and I want someone to advice
...
3
votes
2answers
1k views
Recommended Java maths/stats library
Can someone recommend a good statistics library for Java - it must include the ability to calculate the correlation of two data sets.
I have been trying to compute the correlation of two ArrayLists - ...
3
votes
3answers
6k views
Change connection string from class library in main application at run-time
You can change the connection string at run-time like this. You make the connection string setting available for writing as a separate property inside the MySettings class:
Partial Friend ...
3
votes
4answers
235 views
How can a .net class library be protected so it cant be referenced by other applications?
How can a .net class library project and resulting dll be protected so it cant be referenced by other applications (.net projects) except those projects in my own solution?
2
votes
4answers
66 views
Loading DLL in external program?
I have a C# ClassLibrary that contains a function to sum two numbers:
namespace ClassLibrary1
{
public class Calculator
{
public int Calc(int i, int b) {
return i + b;
...
2
votes
1answer
97 views
Need to call a .Net Class library dll from a Classic ASP Page
I need to call a .Net Class Library from a vbscript application
I have written a C# class library and created a COM DLL component and a type library file
I have successfully registered the dll and tlb ...
2
votes
1answer
93 views
How do I add a Css file to my Class library?
I have a class library which is being used by another project, it is added in the toolbox, then dragged onto the page. Works great!
Only problem is that I want some styling added.
In my class ...
2
votes
1answer
487 views
How to disable UAC prompt using manifest file option in Visual Studio 2010
I want to execute autoit script using vb.net in vs 2010. While executing it keeps prompting. Is it possible to embed a manifest file in a class lib type project in vb.net. As currently I cant see any ...