tagged [syntax]
C# is there a foreach oneliner available?
C# is there a foreach oneliner available? I just want to know if there is a foreach oneliner in C#, like the if oneliner `(exp) ? then : else`.
Your favourite Abstract Syntax Tree optimization
Your favourite Abstract Syntax Tree optimization If you were constructing a compiler, what optimization at the AST level would be the nicest to have?
- Modified
- 1 Dec at 10:26
What are [] in C#?
What are [] in C#? For example: [TestFixtureSetUp] in this example, what does it do? From my experience, [] usually refers to lists.
- Modified
- 20 Jul at 12:56
How can I throw an exception in C?
How can I throw an exception in C? I typed this into Google, but I only found how-tos in C++. How can I do it in C?
Cross-reference (named anchor) in markdown
Cross-reference (named anchor) in markdown Is there syntax for the equivalent of:
Question mark and colon in JavaScript
Question mark and colon in JavaScript I came across the following line What do the `?` and `:` mean in this context?
- Modified
- 17 Apr at 14:27
What's the u prefix in a Python string?
What's the u prefix in a Python string? Like in: My guess is that it indicates "Unicode", is that correct? If so, since when has it been available?
What does the "@" symbol do in PowerShell?
What does the "@" symbol do in PowerShell? I've seen the `@` symbol used in PowerShell to initialise arrays. What exactly does the `@` symbol denote and where can I read more about it?
- Modified
- 21 May at 21:23
Ruby - test for array
Ruby - test for array What is the right way to: or to get the count of items in it?
What does "-ne" mean in bash?
What does "-ne" mean in bash? What does the command "-ne" mean in a bash script? For instance, what does the following line from a bash script do?
What is the C# Using block and why should I use it?
What is the C# Using block and why should I use it? What is the purpose of the `Using` block in C#? How is it different from a local variable?
- Modified
- 26 Feb at 21:0
Copy Notepad++ text with formatting?
Copy Notepad++ text with formatting? I'm using Notepad++ to write code. How do I copy code in Notepad++ along with its formatting to paste into Microsoft Word? (i.e. syntax highlights, etc)
- Modified
- 6 Dec at 08:37
Is there a difference between "!=" and "is not" in C#?
Is there a difference between "!=" and "is not" in C#? Is this: different from this: Or are there no differences between the two conditions?
- Modified
- 20 Nov at 17:36
How can I do a line break (line continuation) in Python?
How can I do a line break (line continuation) in Python? Given: How do I write the above in two lines?
- Modified
- 9 Apr at 08:53
What does += mean in Python?
What does += mean in Python? I see code like this for example in Python: What does the `+=` mean?
What does the question mark and the colon (?: ternary operator) mean in objective-c?
What does the question mark and the colon (?: ternary operator) mean in objective-c? What does this line of code mean? The `?` and `:` confuse me.
- Modified
- 7 Jan at 08:45
Comments in Markdown
Comments in Markdown How do you write a comment in Markdown, i.e. text that is not rendered in the HTML output? I found nothing on the [Markdown project](http://daringfireball.net/projects/markdown/).
Kotlin secondary constructor
Kotlin secondary constructor How do I declare a secondary constructor in Kotlin? Is there any documentation about that? Following does not compile...
- Modified
- 10 Oct at 15:7
What does "static" mean in C?
What does "static" mean in C? I've seen the word `static` used in different places in C code; is this like a static function/class in C# (where the implementation is shared across objects)?
What are the advantages of list initialization (using curly braces)?
What are the advantages of list initialization (using curly braces)?
- Modified
- 28 May at 06:47
Syntax Highlighting VS Addins
Syntax Highlighting VS Addins What tools are out there that compete with this product? [CodeKana](http://www.codekana.com/) I know ReSharper has improved syntax highlighting. Is it comparable to this?
- Modified
- 4 Apr at 07:14
Why does C# allow {} code blocks without a preceding statement?
Why does C# allow {} code blocks without a preceding statement? Why does C# allow code blocks without a preceding statement (e.g. `if`, `else`, `for`, `while`)?
- Modified
- 26 May at 13:19