Hello,
I'm building a generic Class Library that I will use it in all my projects.
As for now, I can do the following where I have only one Resource file Resources.resx: LibPublic.Prope rties.Resources .ResourceManage r.GetString("Re cordType_Missin g").ToString () where LibPublic is the name of my Class Library.
I have already worked on a Website Project where we can create our classes under App_Code...
Search Result
Collapse
4 results in 0.0052 seconds.
Keywords
Members
Tags
-
How to access Resource file from a Class Library ?
-
Simply a Singleton - in C# .NET
I have implemented singleton classes many times in the past without a problem. Perhaps dimentia is setting in, but today I found I couldn't make it work.
I'm using Visual Studio 2008, C#, and started with a simple:
Code:public class justOne { private static justOne _justOne = null; public static int LocalCounter; private justOne() { LocalCounter = 0; }
-
Class Library can't be found!
I have a web Application and have created a seperate class library project.
I am trying to use the Class Library by referencing it in the Web Application. I am doing this by right clicking the web application and clicking 'Add Reference...'. I then browse to my Class library and click ok. This gets added to a Bin folder in my web application.
The problem is I can't actually get any of the objects that are in the Clas... -
Webservice vs dll from Classic ASP
Should I use a webservice or a class library for some processing that will be called from classic asp.
What are the pros and cons of each.