This page is for reference purposes. It demonstrates most of the formatting possible with the csharp.css and general master.css style sheet.
<form name="myForm" novalidate> <!-- Here is a comment --> <div class="well"> <div class="checkbox"> <label> <input name="sample" type="checkbox" ng-model="inputValue" ng-true-value="Hurrah!" ng-false-value="Boo!"> This is a checkbox </label> </div> </div> <div class="well"> <p>Model Value: {{inputValue}}</p> </div> </form>
Paragraph Text
Paragraph Text. UIElement. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text.
Figure 1.1 The completed Hello World! application.
Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text.
Note: This is a note.
Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text. Paragraph Text.
using System; using System.Collections.Generic; using System.Linq; using System.Text; namespace SimpleCSharpApp { class Program { #region This is a region preproc directive static void Main(string[] args) { // This is a remark. string myString = "This is a string"; } #endregion } }
Class Characteristic | Meaning in Life |
---|---|
Is the class sealed or not? | Sealed classes cannot function as a base class to other classes. |
Does the class implement any interfaces? | An interface is a collection of abstract members that provide a contract between the object and object user. The CTS allows a class to implement any number of interfaces. |
Is the class abstract or concrete? | Abstract classes cannot be directly instantiated, but are intended to define common behaviors for derived types. Concrete classes can be instantiated directly. |
What is the visibility of this class? | Each class must be configured with a visibility keyword such as public or internal. Basically, this controls if the class may be used by external assemblies or only from within the defining assembly. |