In short use _references.js file with your web projects. What is _references.js? With the latest Visual Studio a new file _references.js is found in the scripts directory. As you probably know, the `// ` syntax was introduced in Visual Studio long time ago to make you able to have intellisense in any JavaScript file to include everything defined in the JavaScript located at this path. Read more. [More]
In software engineering, the singleton pattern is a design pattern that restricts the instantiation of a class to one object. This is useful when exactly one object is needed to coordinate actions across the system. The concept is sometimes generalized to systems that operate more efficiently when only one object exists, or that restrict the instantiation to a certain number of objects. Implementation of a singleton pattern must satisfy the single instance and global access principles. [More]
Attributes give you the ability to store additional information with your application or assembly metadata, which can be queried at runtime by using the .NET Frameworks Reflection capabilities. For example, attributes could be used to indicate whether a class is serializable, or which field in a database a particular property should be written to. [More]
The following method can be used save string messages out to log files. [More]