• This article describes the syntax of the C# programming language. The features described are compatible with .NET Framework and Mono. An identifier is...
    98 KB (10,557 words) - 00:18, 8 June 2025
  • Thumbnail for C syntax
    The syntax of the C programming language is the set of rules governing writing of software in C. It is designed to allow for programs that are extremely...
    85 KB (10,915 words) - 13:58, 11 June 2025
  • Thumbnail for C++ syntax
    The syntax of C++ is the set of rules defining how a C++ program is written and compiled. C++ syntax is largely inherited from the syntax of its ancestor...
    60 KB (7,939 words) - 02:36, 19 June 2025
  • Thumbnail for C Sharp (programming language)
    C# (pronounced: C-sharp) (/ˌsiː ˈʃɑːrp/ see SHARP) is a general-purpose high-level programming language supporting multiple paradigms. C# encompasses static...
    101 KB (8,541 words) - 19:08, 10 June 2025
  • Thumbnail for Java syntax
    The syntax of Java is the set of rules defining how a Java program is written and interpreted. The syntax is mostly derived from C and C++. Unlike C++,...
    73 KB (7,938 words) - 01:28, 21 April 2025
  • Exception handling syntax is the set of keywords and/or structures provided by a computer programming language to allow exception handling, which separates...
    44 KB (4,954 words) - 18:36, 11 June 2025
  • dynamic dispatch, with syntax similar to C++ (C++ in turn derives from C). Neither language is a superset of C or C++, however. C# allows a class definition...
    152 KB (13,904 words) - 15:11, 16 June 2025
  • easy syntax: int? i = null; int j = i ?? 0; // If i is not null, initialize j to i. Else (if i is null), initialize j to 0. "An Introduction to C# Generics"...
    8 KB (900 words) - 14:31, 13 December 2023
  • syntactical features vary slightly in some implementations, the fundamental syntax rules, commands and features that define MML and are present in whole or...
    23 KB (2,554 words) - 16:30, 20 March 2025
  • used by the compiler to translate query syntax expressions into expressions using fluent-style (called method syntax by Microsoft) with these method names...
    28 KB (3,366 words) - 06:11, 3 February 2025
  • computing, including functions with variables and branches as well as a syntax-highlighted development environment with a quantum debugger. Historically...
    21 KB (1,957 words) - 01:22, 21 March 2025
  • Microsoft programming languages C#, J# and F#. Microsoft says that the name C# is pronounced 'see sharp'." According to the ECMA-334 C# Language Specification...
    41 KB (4,331 words) - 18:23, 18 June 2025
  • C++ are two other programming languages whose syntax is also based on the C syntax, so they share a common look and feel. See Comparison of C Sharp and...
    36 KB (3,956 words) - 14:34, 2 June 2025
  • documents, databases, etc.—which is tightly integrated with other C# language facilities. The syntax is different from, but borrows from SQL. An example: int[]...
    10 KB (1,167 words) - 21:43, 2 February 2022
  • Thumbnail for Sharp PC-1500
    The Sharp PC-1500 was a pocket computer produced by Sharp between 1981 and 1985. A rebadged version was also sold as the TRS-80 Pocket Computer PC-2....
    10 KB (972 words) - 15:37, 31 October 2023
  • Thumbnail for SharpDevelop
    to be used by developers working on C# .Net Framework projects. The last release of SharpDevelop was only aimed at C# projects. There was little significant...
    13 KB (1,017 words) - 07:14, 8 January 2025
  • Thumbnail for F Sharp (programming language)
    F# (pronounced F sharp) is a general-purpose, high-level, strongly typed, multi-paradigm programming language that encompasses functional, imperative...
    53 KB (4,085 words) - 04:08, 6 June 2025
  • Thumbnail for Foreach loop
    Foreach loop (category Articles with example C Sharp code)
    following syntax, accepting a delegate or lambda expression: myArray.ToList().ForEach(x => Console.WriteLine(x)); C++11 provides a foreach loop. The syntax is...
    42 KB (4,147 words) - 05:22, 3 December 2024
  • CS-Script (category Free software programmed in C Sharp)
    open-source scripting platform that enables creating scripts in ECMA-compliant C# syntax. These scripts have access to .NET Framework or Mono APIs. CS-Script offers...
    4 KB (416 words) - 02:28, 21 November 2024
  • 9 hash syntax". Logical Friday. Archived from the original on 25 June 2011. Retrieved 13 July 2011. "Fat arrows in javascript". "Hacking Sharp Lambda...
    6 KB (576 words) - 17:49, 31 December 2023
  • Visual J# (pronounced "jay-sharp") is a discontinued implementation of the J# programming language that was a transitional language for programmers of...
    10 KB (882 words) - 07:30, 20 March 2025
  • Thumbnail for Integrated development environment
    The IDE editor usually provides syntax highlighting, it can show both the structures, the language keywords and the syntax errors with visually distinct...
    17 KB (2,080 words) - 11:23, 13 June 2025
  • Mutator method (category Articles with example C Sharp code)
    : String) : void { _name = value; } } } Using traditional Objective-C 1.0 syntax, with manual reference counting as the one working on GNUstep on Ubuntu...
    24 KB (2,756 words) - 01:02, 6 October 2024
  • Thumbnail for Zilog Z80
    Zilog Z80 (redirect from Sharp LH0080)
    was based on a simple (but systematic) syntax inherited from the Datapoint 2200 design. This original syntax was later transformed into a new, somewhat...
    118 KB (12,641 words) - 17:10, 15 June 2025
  • interface to call C/C++ and Python code. The language is not source-compatible with Python 3, only providing a subset of its syntax, e.g. missing the...
    18 KB (1,540 words) - 01:30, 7 June 2025
  • Property (programming) (category Articles with example C Sharp code)
    intermediate in functionality between a field (or data member) and a method. The syntax for reading and writing of properties is like for fields, but property reads...
    17 KB (1,742 words) - 17:45, 24 January 2025
  • Shebang (Unix) (redirect from Sharp-Bang)
    sign (also known as sharp or hash) and exclamation mark (also known as bang), at the beginning of a script. It is also called sharp-exclamation, sha-bang...
    25 KB (3,233 words) - 02:29, 17 March 2025
  • Multiple dispatch (category Articles with example C Sharp code)
    implementation of open multimethods. The syntax for declaring open methods is inspired by a proposal for a native C++ implementation. The library requires...
    52 KB (5,927 words) - 11:40, 28 May 2025
  • Callable object (category Articles with example C Sharp code)
    matches its signature. In C++, any class that overloads the function call operator operator() may be called using function-call syntax. #include <iostream>...
    4 KB (344 words) - 17:17, 18 June 2024
  • ASP.NET Razor (category Free software programmed in C Sharp)
    Razor is an ASP.NET programming syntax used to create dynamic web pages with the C# or VB.NET programming languages. Razor was in development in June 2010...
    6 KB (391 words) - 09:21, 7 February 2025