Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 5 years ago.
Improve this question
I'm writing some static analysis tools and have been trying to avoid doing full-on compilation style string parsing, and that brought me to this question.
Is C# a regular language?
Why or why not?
No. C# is not a regular language. C# lets you nest parentheses arbitrarily deep, and a regular language cannot recognize correct bracket matching. This, by itself, means that C# is not regular.
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 11 months ago.
Improve this question
When I just type "i", intellisense changes the character "i" to "await", and make that method async. It really bothers me when I code for statement.
It occurs when I program only in C#, not in other languages.
Thanks.
i had the same issue in VSCode and it disappeared when enabling the EXPERIMENTAL feature "Omnisharp: Enable Async Completion" in the settings of the "C# for Visual Studio Code"-extension. (That the feature also has "async" in its name is probably coincidential :). Seems strange to me, maybe a bug.)
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Closed 8 years ago.
Improve this question
In Visual Studio 2013 with Resharper, is there some way to check, if i have any uncaught exceptions in my project?
You can use the Agent Johnson plugin for Resharper which has static exception checks. See the following link:
https://code.google.com/p/agentjohnsonplugin/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Closed 9 years ago.
Improve this question
It is possible that such a program written with C #?
if yes how we can?
If you have links or information on this I say thank you.
I'd say you'd probably be looking at setting up a proxy on your local network, pointing the machines you want parental control on to that proxy, and filtering the "allowed" traffic by either:
Checking website address against a predefined blocklist,
and/or
Reading through the HTML looking for naughty words or phrases.
How to create a simple proxy in C#? has a fair bit of detail about setting up a proxy in C#.
Also found http://www.codeproject.com/Articles/92512/Writing-a-Parental-Control-Software-for-Windows. An old project but might be worth looking at if you're researching a project like this.
Closed. This question is off-topic. It is not currently accepting answers.
Want to improve this question? Update the question so it's on-topic for Stack Overflow.
Closed 9 years ago.
Improve this question
I've drunk the kool aid. Vim is elegantly beautiful, and I must learn how to use it and configure it to have a great compiler. Tis the best way to learn.
The question is, where do I start? Is there a good tutorial which teaches Vim for C# in Linux, yet one which assumes that you know next to nothing about Vi in general?
Massive kudos to anyone who can supply this one. Seriously.
Look into these
http://kevin-berridge.blogspot.com/2008/09/vim-c-compiling.html
http://lostechies.com/derickbailey/2010/04/23/using-vim-as-your-c-code-editor-from-visual-studio/
I've used the following instructions to set up vim for C#/mono in the past successfully:
http://arun.wordpress.com/2009/04/10/c-and-vim/
Vim is actually quite good for c#. Even does basic completion!
Edit: The original link was dead, replaced with a wayback machine copy.
I love vim and for Studio work I use viemu.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 9 years ago.
This question does not appear to be about a specific programming problem, a software algorithm, or software tools primarily used by programmers. If you believe the question would be on-topic on another Stack Exchange site, you can leave a comment to explain where the question may be able to be answered.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Improve this question
I am looking for CLI specification.
Where can I find it to download?
I think you're after ECMA 335.
Why not ask google?
http://www.ecma-international.org/publications/standards/Ecma-335.htm
There is a whole host of C# and CLI specification documents here.