active questions tagged reference - Stack Overflowmost recent 30 from stackoverflow.com2009-11-29T06:11:58Zhttp://stackoverflow.com/feeds/tag/referencehttp://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1810716/looking-for-book-on-bash-scripting1Looking for book on Bash scriptingMike2009-11-27T21:38:46Z2009-11-28T20:49:17Z
<p>I'd like to brush up on my knowledge of Shell scripting with Bash for a job interview Monday. </p>
<p>What would the preferred book be for someone with an existing knowledge looking to review the topic?</p>
http://stackoverflow.com/questions/1810623/what-and-how-much-overheads-happen-when-i-use-a-reference-class1What and how much overheads happen when I use a Reference class?DKSRathore2009-11-27T21:01:54Z2009-11-27T23:40:25Z
<p>I saw there is a daemon thread running whenever we create a referenced object using any Reference class like </p>
<pre><code> WeakReference,
FinalReference,
SoftReference,
PhantomReference,
Referemce
</code></pre>
<p>And if we have hierarchal thread structure then at each level there is an extra daemon thread initiated.</p>
http://stackoverflow.com/questions/1565600/non-const-reference-to-temporary-object8non-const reference to temporary objectAlexey Malistov2009-10-14T11:01:22Z2009-11-27T16:25:45Z
<p>Why is it not allowed to get non-const reference to a temporary object,
which function <code>getx()</code> returns? Clearly, this is prohibited by C++ Standard
but I am interested in the purpose of such restriction, <strong>not a reference</strong> to the standard. </p>
<pre><code>struct X
{
X& ref() { return *this; }
};
X getx() { return X();}
void g(X & x) {}
int f()
{
const X& x = getx(); // OK
X& x = getx(); // error
X& x = getx().ref(); // OK
g(getx()); //error
g(getx().ref()); //OK
return 0;
}
</code></pre>
<ol>
<li>It is clear that the lifetime of the object cannot be the cause, because
constant reference to an object is <em>not prohibited</em> by C++ Standard.</li>
<li>It is clear that the temporary object is not constant in the sample above, because calls to non-constant functions are permitted. For instance, <code>ref()</code> could modify the temporary object. </li>
<li>In addition, <code>ref()</code> allows you to fool the compiler and get a link to this temporary object and that solves our problem.</li>
</ol>
<p><strong>In addition:</strong></p>
<p>They say "assigning a temporary object to the const reference extends the lifetime of this object" and " Nothing is said about non-const references though".
My <strong>additional question</strong>. Does following assignment extend the lifetime of temporary object?</p>
<pre><code>X& x = getx().ref(); // OK
</code></pre>
http://stackoverflow.com/questions/1068760/can-i-pass-parameters-by-reference-in-java8Can I pass parameters by reference in Java?ripper2342009-07-01T11:59:38Z2009-11-27T11:45:40Z
<p>I'd like semantics similar to <code>C#</code>'s <strong><code>ref</code></strong> keyword.</p>
http://stackoverflow.com/questions/1596293/how-to-identify-use-ostype-in-cocoa0How to identify & use OSType in Cocoa ReachConnection2009-10-20T17:57:51Z2009-11-26T18:22:43Z
<p>In Cocoa/Mac OSX 10.6 </p>
<p><strong>OSType IOSurfaceGetPixelFormat(IOSurfaceRef buffer)</strong></p>
<p>returns a type <strong>OSType</strong></p>
<p>where can I find some documentation/reference on the supported OSType with regard to the context of this function. </p>
<p>What sort OSType should I expect with IOSurfaceGetPixelFormat? do you have any ideas on the various expected values from this function?</p>
http://stackoverflow.com/questions/1798956/c-is-it-possible-to-extend-an-existing-built-in-class-with-a-new-interface0C# - Is it possible to extend an existing built-in class with a new Interfacemrbamboo2009-11-25T18:21:24Z2009-11-25T18:26:23Z
<p>Hi,</p>
<p>I am just learning C# and I have a problem now. :-)
In C++ I loved to use "const reference" as a parameter to avoid that
the called method changes my passed object.</p>
<p>I read somewhere that I can do sth. similar in C# by using Interfaces.
In the interface I would just put some "getters" to allow the method a readonly access
to my object.</p>
<p>Now guess, that I want to pass my C# method a built-in container like "List".
But I want to avoid that the method changes something in that list.
Just read only!</p>
<p>My first thought was:
- I create a new Interface called IMyOwnInterface, which uses the interface IList as well</p>
<ul>
<li><p>My new interface IMyOwnInterface contains only "getters"</p></li>
<li><p>I change my method to sth. like that MyLittleMethod(IMyOwnInterface if)</p></li>
<li><p>Now the method "MyLittleMethod" can just see the "getters", which I put in my own interface and not the "setters" of IList</p></li>
</ul>
<p>Is this possible?
Can someone give me a hint?</p>
http://stackoverflow.com/questions/1798631/c-vector-of-class-object-pointers0c++ vector of class object pointersNigel2009-11-25T17:34:43Z2009-11-25T18:04:39Z
<p>Hi all,</p>
<p>What I am trying to do is essentially create two vectors of objects, where some objects are entered into both lists and some are just entered into one. The first problem I found was that when I used push_back() to add an object into both lists the object was copied so that when I changed it from one list the object did not change in the other. To get around this I tried to create a list of pointers to objects as one of the lists. However when I accessed the pointer later on the data seemed to be corrupted, the data member values were all wrong. Here are some snippets of my code:</p>
<p>Definition of vectors:</p>
<pre><code>vector<AbsorbMesh> meshList;
vector<AbsorbMesh*> absorbList;
</code></pre>
<p>...
Adding an object to both:</p>
<pre><code>AbsorbMesh nurbsMesh = nurbs.CreateMesh(uStride, vStride);
// Add to the absorption list
absorbList.push_back(&nurbsMesh);
// Store the mesh in the scene list
meshList.push_back(nurbsMesh);
</code></pre>
<p>Accessing the object:</p>
<pre><code>if (absorbList.size() > 0)
{
float receivedPower = absorbList[0]->receivedPower;
}
</code></pre>
<p>What am I doing wrong?</p>
http://stackoverflow.com/questions/1796193/mysql-undefined-reference-to-impzn7mysqlpp10connectionc1eb0Mysql++ "undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb"M282009-11-25T11:02:28Z2009-11-25T16:15:50Z
<p>I am trying to install the mysql++ in Code::Blocks, but When I try to run the example code I get this error:</p>
<blockquote>
<p><code>undefined reference to __imp___ZN7mysqlpp10ConnectionC1Eb</code></p>
</blockquote>
<p>What I am doing wrong?</p>
http://stackoverflow.com/questions/1796363/calling-a-procedure-that-uses-reference-cursors-from-another-procedure0Calling a procedure that uses reference cursors from another procedure?Signil2009-11-25T11:29:53Z2009-11-25T11:29:53Z
<p>How can I call a procedure that uses reference cursors from another procedure?</p>
http://stackoverflow.com/questions/1786917/is-there-a-way-to-specify-assembly-references-based-on-build-configuration-in-vis1Is there a way to specify assembly references based on build configuration in Visual Studio?snicker2009-11-23T23:55:14Z2009-11-25T10:59:44Z
<p>I have a project that adds some extensibility to another application through their API. However, I want to be able to use the same project for multiple versions of their application, because most of the code is the same.</p>
<p>However, each version of the application requires a reference to the proper assembly for that version of the software. They load their assemblies into the GAC, so even if I could specify the <em>version</em> of the assembly to use based on build configuration I would be fine. Is there a way to do this from inside of VS or do I need an external build tool?</p>
http://stackoverflow.com/questions/1788960/compositescriptrefernce0CompositeScriptReferncejaapie2009-11-24T09:34:18Z2009-11-24T09:34:18Z
<p>Hi,</p>
<p>I'm trying to add a composite scriptreference like this;</p>
<p>ScriptReference scriptReference = new ScriptReference("CSSFriendly.JavaScript.MenuAdapter.js", "CSSFriendly");
scriptReference.NotifyScriptLoaded = false;
scriptManager.CompositeScript.Scripts.Add(scriptReference);</p>
<p>In the CSSFriendly assembly the script resource is defined;</p>
<p>[assembly: WebResource("CSSFriendly.JavaScript.TreeViewAdapter.js", "application/x-javascript")]</p>
<p>And registered as:</p>
<p>ScriptManager.RegisterClientScriptResource(page, type, "CSSFriendly.JavaScript.TreeViewAdapter.js");</p>
<p>But the ScriptResource.axd for this js file is still included! It works with MicrosoftAjax.js in System.Web.Extensions, but not with my own assembly.</p>
http://stackoverflow.com/questions/1787790/how-to-reference-one-foreign-key-column-with-multiple-primary-key-column0How to reference one foreign key column with multiple primary key columnDot Net Developer2009-11-24T04:30:47Z2009-11-24T05:03:53Z
<p>I am creating BOOK_Issue table which will contain id of person to whom the book is issued.
i have a column name user_id witch will contain ids from tbl_student as well as tbl_faculty. so how to set user_id field of book_issue table with reference to two primary key columns.</p>
http://stackoverflow.com/questions/1785828/call-member-function-by-reference-php0call member function by reference phpBooosh2009-11-23T20:47:14Z2009-11-23T20:57:32Z
<p>Please stop me if i am doing something wrong. It works but somehow it doesn't appear the right way to me... Look at the member function call in talks.php. Does this look right to you? Is there a better way to solve that? Thanks.</p>
<h2>show.php</h2>
<p>I am passing my user class by reference: </p>
<pre><code>$talks = new talks($comments, $user);
</code></pre>
<h2>talks.php:</h2>
<pre><code>[...]
function __construct($comments, &$user)
{
//Passing user class
$this->user = $user;
[...]
if ($this->user->is_loaded()){}
</code></pre>
http://stackoverflow.com/questions/1740575/php5-does-the-copy-of-an-array-for-a-foreach-incur-overhead2php5: does the 'copy' of an array for a foreach incur overhead?Don2009-11-16T07:14:07Z2009-11-22T03:01:45Z
<p>Is the 'copy' of an array for a foreach (of php5, in this case) an immediate copy with actual overhead, or merely a lazy copy (copy on write) which only produces overhead if it detects a write manipulation?</p>
<p>The alternative, note in several places, is to run foreach over keys($array) -- how can that really be faster?</p>
http://stackoverflow.com/questions/1776020/c-interesting-params-of-ref-feature-any-workarounds1[C#] Interesting "params of ref" feature, any workarounds?kornelijepetak2009-11-21T16:55:05Z2009-11-21T18:43:25Z
<p>I wonder if there's any way something like this would be possible for value types...</p>
<pre><code>public static class ExtensionMethods {
public static void SetTo(this Boolean source, params Boolean[] bools) {
for (int i = 0; i < bools.Length; i++) {
bools[i] = source;
}
}
}
</code></pre>
<p>then this would be possible:</p>
<pre><code>Boolean a = true, b, c = true, d = true, e;
b.SetTo(a, c, d, e);
</code></pre>
<p>Of course, this does not work because the bools are a value type so they are passed into the function as a value, not as a reference.</p>
<p>Other than wrapping the value types into reference types (by creating another class), is there any way to pass a variable into function by the reference (ref) while using params modifier?</p>
http://stackoverflow.com/questions/1714461/ansi-sql-manual6ANSI SQL ManualAdrian2009-11-11T10:58:55Z2009-11-21T14:53:29Z
<p>Can anyone recommend a good ANSI SQL reference manual? </p>
<p>I don't necessary mean a tutorial but a proper reference document to lookup when you need either a basic or more in-depth explanation or example.</p>
<p>Currently I am using <a href="http://www.w3schools.com/SQl/default.asp" rel="nofollow">W3Schools SQL Tutorial</a> and <a href="http://www.sql-tutorial.net/SQL-IN.asp" rel="nofollow">SQL Tutorial</a> which are ok, but I don't find them "deep" enough.</p>
<p>Of course, each major RDBMS producer will have some sort of reference manuals targeting their own product, but they tend to be biased and sometime will use proprietary extensions.</p>
<p>EDITED: The aim of the question was to focus on the things database engines have in common i.e. the SQL roots. But understanding the differences can also be a positive thing - <a href="http://troels.arvin.dk/db/rdbms/" rel="nofollow">this</a> is quite interesting.</p>
http://stackoverflow.com/questions/1772838/invalid-initialization-of-non-const-reference-of-type-int-from-a-temporary-of1invalid initialization of non-const reference of type ‘int&' from a temporary of type 'MyClass<int>::iterator*'exscape2009-11-20T19:51:46Z2009-11-20T19:59:21Z
<p>I'm getting the following error from g++ while trying to add iterator support for my linked list class.</p>
<p>LinkedList.hpp: In member function ‘Type& exscape::LinkedList::iterator::operator*() [with Type = int]’:<br>
tests.cpp:51: instantiated from here<br>
LinkedList.hpp:412: error: invalid initialization of non-const reference of type ‘int&’ from a temporary of type ‘exscape::LinkedList::iterator*’</p>
<p>Likely relevant code snippets:</p>
<p>LinkedList.hpp:</p>
<pre><code>template <typename Type>
class LinkedList {
private:
struct node {
struct node *prev;
struct node *next;
Type data;
};
public:
class iterator : public std::iterator<...> {
node *p;
public:
Type &operator*();
};
...
};
template <typename Type>
LinkedList<Type>::iterator::iterator(struct node *in_node) : p(in_node) {}
template <typename Type>
inline Type &LinkedList<Type>::iterator::operator*() {
return this-p->data; ///// Line 412
}
</code></pre>
<p>tests.cpp:</p>
<pre><code>...
LinkedList<int> l1;
...
LinkedList<int>::iterator it;
for (it = l1.begin(); it != l1.end(); ++it) {
std::cout << "Element: " << *it << std::endl; ///// Line 51
}
</code></pre>
<p>I've googled (and searched SO, of course), and checked my code to no avail - either I'm missing something basic (aka. doing something stupid), or I'm missing the knowledge required. Any advice?</p>
http://stackoverflow.com/questions/1770925/how-to-cycle-through-xcode-windows-or-open-help-within-the-bottom-pane0How to cycle through xcode windows (or open 'help' within the bottom pane)?xcoder2009-11-20T14:50:42Z2009-11-20T14:58:45Z
<p>Hi. I'm using a MBP...</p>
<p>In Xcode 3.2 the help/reference pops up in a new window when I ALT, CMD, DOUBLECLICK on a class name**. In previous versions it looks like it used to open up in the bottom pane of the main Xcode window. Can I replicate that in 3.2+?</p>
<p>The problem I'm having is that if either one of the Xcode windows (help or main) is maximised, it's easy to loose one window behind the other, and I seem unable to cycle through the individual Xcode windows (the normal window cycling doesn't work - both windows just show up as one item, 'Xcode').</p>
<p>I'd be happy to find out how to cycle through the Xcode windows or bring up the help window in the bottom pane, as it was in prior versions. Currently I'm using Expose to access the hidden window - which is okay, but not optimal.</p>
<p>Thanks.</p>
<p>** ALT & DOUBLE-CLICK now brings up QuickHelp in 3.2</p>
http://stackoverflow.com/questions/1606212/why-there-is-no-official-javascript-reference9Why there is no OFFICIAL JavaScript reference?huy2009-10-22T10:02:22Z2009-11-20T04:43:54Z
<p>I tried to search for one, but there's none available. The best 2 suggested sources are MDC and W3Schools.</p>
<p>Anybody happens to know why? Thank you so much!</p>
http://stackoverflow.com/questions/833180/handy-f-snippets10Handy F# snippets Benjol2009-05-07T06:37:14Z2009-11-19T18:27:28Z
<p>There are already <a href="http://stackoverflow.com/questions/35940/elegant-snippets-of-f">two</a> <a href="http://stackoverflow.com/questions/832569/list-of-functional-code-snippets-for-procedural-programmers">questions</a> about F#/functional snippets.</p>
<p>However what I'm looking for here are <strong>useful</strong> snippets, little 'helper' functions that are reusable. Or obscure but nifty patterns that you can never quite remember.</p>
<p>Something like:</p>
<pre><code>open System.IO
let rec visitor dir filter=
seq { yield! Directory.GetFiles(dir, filter)
for subdir in Directory.GetDirectories(dir) do
yield! visitor subdir filter}
</code></pre>
<p>I'd like to make this a kind of handy reference page. As such there will be no right answer, but hopefully lots of good ones.</p>
http://stackoverflow.com/questions/1744164/how-to-keep-up-to-date-on-available-java-libraries6How to keep up to date on available Java libraries?Dean J2009-11-16T19:04:46Z2009-11-19T15:48:25Z
<p>I've been writing java.io code verbosely for far too long, and stumbled onto Apache Commons IO last week. I've used a lot of Commons before, but never looked at IO, and now I feel silly for writing a notable amount of extra code over the years.</p>
<p>Is there any good resource for Java libraries that isn't overwhelming, besides maybe reading through all of the available Apache Commons once a year to see if anything new was added? </p>
<p>How do you keep up to date on what's out there?</p>
<p><br/>
<br/></p>
<p><em>Adding an edit to summarize. Mostly, I'm looking for push technology; something to help me keep up to date, instead of me having to know what I want to learn.</em></p>
<ul>
<li>The <a href="http://www.discursive.com/books/cjcook/reference/book-cjcook.html" rel="nofollow">Common Java Cookbook</a></li>
<li>Podcasts, including <a href="http://javaposse.com/" rel="nofollow">javaposse</a></li>
<li>RSS, including <a href="http://www.theserverside.com/" rel="nofollow">theserverside</a>, <a href="http://java.net/" rel="nofollow">java.net</a></li>
<li>Looking through the dependencies of projects I already use</li>
<li>Stack Overflow</li>
</ul>
<p>Additional items that require you know a bit to look for something using them (pull):</p>
<ul>
<li>ACM (If this could be pared down more, it'd bump to the first list.)</li>
<li>Google</li>
<li>Browse the <a href="http://mvnrepository.com/" rel="nofollow">Maven Repository</a></li>
</ul>
<p>Also tangentially related, keeping up on Java itself, this blog was recommended:</p>
<ul>
<li><a href="http://blogs.sun.com/darcy/entry/project%5Fcoin%5Ffinal%5Ffive" rel="nofollow">Darcy's Sun Blog</a></li>
</ul>
<p><strong>Any other suggestions?</strong> Thanks everyone for the helpful advice.</p>
http://stackoverflow.com/questions/1210754/visual-studio-relative-assembly-references-paths1Visual Studio: Relative Assembly References Pathsjimioh2009-07-31T04:54:43Z2009-11-18T15:21:19Z
<p>When adding a reference to an assembly located within the solution directory, is there any way to add it relatively, so that when checked in and out of a repository it is referenced in projects correctly?</p>
http://stackoverflow.com/questions/1062555/adding-web-reference-on-client-when-using-net-tcp0Adding web reference on client when using Net.TCPMarko2009-06-30T08:55:36Z2009-11-18T11:11:33Z
<p>Hi everyone...</p>
<p>I am trying to using Net.TCP in my WCF Service, which is self hosted, when i try to add this service reference through web reference to my client, i am not able access the classes and methods of that service, can any have any idea to achieve this...
How I can add web references in this case. My Service has one method (GetNumber) that returns int.</p>
<h2>WebService:</h2>
<pre><code>public class WebService : IWebService
{
public int GetNumber(int num)
{
return num + 1;
}
}
</code></pre>
<p><hr /></p>
<h2>Service Contract code:</h2>
<pre><code>[ServiceContract]
public interface IWebService
{
[OperationContract]
int GetNumber(int num);
}
</code></pre>
<p><hr /></p>
<h2>WCF Service code:</h2>
<pre><code> ServiceHost host = new ServiceHost(typeof(WebService));
host.AddServiceEndpoint(typeof(IWebService), new NetTcpBinding(), new Uri("net.tcp://" + Dns.GetHostName() + ":1255/WebService"));
NetTcpBinding binding = new NetTcpBinding();
binding.TransferMode = TransferMode.Streamed;
binding.ReceiveTimeout = TimeSpan.MaxValue;
binding.MaxReceivedMessageSize = long.MaxValue;
Console.WriteLine("{0}", Dns.GetHostName().ToString());
Console.WriteLine("Opening Web Service...");
host.Open();
Console.WriteLine("Web Service is running on port {0}",1255);
Console.WriteLine("Press <ENTER> to EXIT");
Console.ReadLine();
</code></pre>
<p><hr /></p>
<p>This works fine. Only problem is how to add references of this service in my client application. I just want to send number and to receive an answer.
Can anyone help me?</p>
http://stackoverflow.com/questions/935336/sql-server-cursor-reference-syntax-etc3SQL Server Cursor Reference (Syntax, etc)Frank2009-06-01T15:34:33Z2009-11-17T21:43:58Z
<p>I don't use SQL Server Cursors often but when I do, I always have to look up the syntax and options. </p>
<p>So I wanted to ask, what is the best SQL Server Cursor reference on the web?. </p>
<p>I'm looking for a reference that explains all of the (major?) options (I.E. FAST_FORWARD) and also shows quick snippets of how to use it. (I.E. How to implement looping though a cursor and with a good practice for checking the @@FETCH_STATUS variable.)</p>
<p>Best Regards,<br>
Frank</p>
<p><strong>Quick Update:</strong> I'm looking for a balance of quick-reference but detailed enough to see my options. As an example. MSDN is a great reference guide but it has too much detail. <strong>The reference, ideally, should be concise.</strong> </p>
<p><strong>Further update:</strong> I'm still looking for sources. If someone posts a good source that fits my criteria of <em>concise</em>, I will accept that answer...</p>
http://stackoverflow.com/questions/1750942/good-reference-site-for-sql-rdbms1Good reference site for SQL/RDBMSPaul Nathan2009-11-17T18:46:16Z2009-11-17T19:15:35Z
<p>One of the aspects of computer science/practical software engineering I am weaker at is actually doing significant work in database systems. That is to say, I can do simple queries on smaller datasets, no problem. However, working with complex queries on large datasets invokes a level of understanding of databases beyond me right now. For example, I built an amusing query some time ago that computed a join using a n^2 size where n=20,000- the hosting server suspended my account for blowing the CPU. Shocking.</p>
<p>I am interested in bringing myself up to speed on how to design schema and queries that, well, don't bring down the server. Pursuant to that end, what materials do you recommend that discuss professional database/SQL design and writing?</p>
http://stackoverflow.com/questions/1744543/reference-two-equal-assemblies-only-public-keys-differ1Reference two equal assemblies, only public keys differSandor Drieënhuizen2009-11-16T20:07:00Z2009-11-17T09:30:11Z
<p>My Visual Studio 2008 project references two (external) assemblies (A+B) both of which happen to be referencing the same third assembly (C). However, assembly A expects assembly C to have a public key which is different from what assembly B expects it to have.</p>
<p>Here's an example of the obvious exception:</p>
<blockquote>
<p>Could not load file or assembly 'Newtonsoft.Json, Version=3.5.0.0, Culture=neutral, PublicKeyToken=9ad232b50c3e6444' or one of its dependencies. The located assembly's manifest definition does not match the assembly reference. (Exception from HRESULT: 0x80131040)</p>
</blockquote>
<p>Ofcourse, I would not be able to put both versions of C (only differing by public key) in the same directory, as their filenames are equal. Second, I've found that using assembly binding from the configuration file only allows version mapping, not public key mapping. </p>
<p>I've also tried to put one of the assemblies C in a separate directory and configure the CLR to search in that directory when loading assemblies. I could not get that to work unfortunately.</p>
<p>I'm aware that recompiling one of the external libraries (one of them happens to be open sourced) would fix this problem but I don't want to add that burden to my maintenance plan if it is not absolutely necessary.</p>
<p>So my question is: how would I reference both 'versions' of assembly C, which only differ by public key?</p>
http://stackoverflow.com/questions/1742456/prevent-a-specific-assembly-from-being-added-to-my-factory-project0Prevent a specific assembly from being added to my factory project?Mike Hanson2009-11-16T14:21:07Z2009-11-17T09:29:36Z
<p>I've created a factory assembly that can process any type of transaction (that supports <code>ITransactionType</code>). I can add more transaction types in separate assemblies, all of which will work with the factory without it needing to be recompiled (which is one of the benefits of a factory).</p>
<p>There is an actual list of transaction types that can be handled, so I've defined a static class with const strings, which is kept in a separate assembly. This is referenced by other assemblies to ensure consistent transaction type names. This assembly is <em>not</em> referenced by the factory, as it doesn't need to know, and it would result in unnecessary compilations of that project.</p>
<p>All this works just fine. I'll never reference the master list assembly in the factory project, because it know it doesn't make sense.</p>
<p>However, I'm concerned that if the project is being maintained by someone who doesn't understand all this, they may mistakenly add the reference to the master list assembly. Is there some way to prevent this reference from being added? IOW, if someone (perhaps even myself in the future) adds the reference, is there some way for me to force a compile error pointing to an explanation of why the behavior is unacceptable?</p>
http://stackoverflow.com/questions/1727768/how-does-visual-studio-find-unity-pp-or-office-assemblies-in-its-add-references0How does Visual Studio find Unity/P&P or Office assemblies in its Add References Dialog?Dmitri Nesteruk2009-11-13T07:51:58Z2009-11-16T22:51:52Z
<p>I have read other posts on SO regarding VS's Add References dialog and how it populates assemblies. However, even after looking in <em>Reference Assemblies</em> folder and using the <em>AssemblyFolders</em> registry key for 32-bit and 64-bit, I am still unable to locate some assemblies, such as Unity/P&P and Office assemblies, when searching for them programmatically. Am I missing something?</p>
http://stackoverflow.com/questions/1741003/dos-and-donts-while-using-references-in-java0Dos and Don'ts while using references in JavaSachin Chourasiya2009-11-16T09:19:01Z2009-11-16T21:45:18Z
<p>What are the dos and don'ts while using references in Java?</p>
http://stackoverflow.com/questions/74884/good-javascript-books23Good JavaScript Books?jollyjerry2008-09-16T17:36:53Z2009-11-12T16:02:48Z
<p>I find myself using Javascript day to day without a solid understanding of the language. There are some great writeups out there about using specific features of the language, but I'd like a distilled, printed book reference about the language itself.</p>
<p>Please list good books that discuss the JavaScript language; not frameworks, usage and quirks.</p>