1
vote
Is there any tool for reformatting C# code?
This isn't command-line, mono or linux, but it's something: I've been using ReSharper (made by JetBrains) and it's rather good. It's …
2
votes
.NET Generic Method Question
Inheritance doesn't work the same when using generics. As Smashery points out, even if TypeA inherits from TypeB, myType<TypeA> doesn't inherit from myType<TypeB>.
As such, you can't …
1
vote
Automatically create event handler from markup view (c#)
You can automatically create a handler method by going to your page's OnLoad or Page_Load method, and adding a handler for the event. For example, for this Label:
<asp:label ID=" …
0
votes
What is a Value Class and what is a reference Class in C#?
When you refer to a value type (that is, by using its name), you're talking about the place in memory where the data is. As such, value types can't be null because there's no way for the memory loc …
1
vote
run javascript in C#
First, you probably want to consider exactly why you're trying to do this. Is it that you want to use the algorithm from the JS in C#? If so, go ahead. If you want to use C# in client-side code (i. …
