Search Results

4
votes

Class with single method — best approach?

If there is no reason to have an instance of the class created in order to execute the function then use the static implementation. Why make the consumers of this class create an instance when one …
0
votes

How to move scroll bar up by one line? (In C# RichTextBox)

window.scrollBy(0,20); This will scroll the window. 20 is an approximate value I have used in the past that typically equals one line... but of course font size may impact how far one lin …
14
votes

How To: Execute command line in C#, get STD OUT results

// Start the child process. Process p = new Process(); // Redirect the output stream of the child process. p.StartInfo.UseShellExecute = false; p.StartInfo.RedirectStandardOutput = true …
12
votes

Are immutable arrays possible in .NET?

ReadOnlyCollection is probably what you are looking for. It doesnt have an Add() method. http://msdn.microsof …