subscribe
Call Us Free: --

Archive for the ‘C# Programming’ Category

Serial Port Buffering C#.net

Serial Port buffering is explained. How to receive the serial port data without any loss if incoming data stream flow into seperate triggers is realized using c#

Read more

Instrument Control over LAN

With Instrument control, one can connect to the desktop instrument using computer and take measurements. There are several different ways to control your instruments – you can either use an instrument driver or control the instrument through direct I/O commands (see Figure1). Figure1.Instrument Control Architecture

Read more

Mathematical Polynomial:c[0] + c[1] * x + c[2] * x^2 + …. in C#

In mathematics, a polynomial is an expression of finite length constructed from variables (also known as indeterminates) and constants, using only the operations of addition, subtraction, multiplication, and non-negative integer exponents. For example, x2 – 4x + 7 is a polynomial, but x2 – 4/x + 7×3/2

Read more

Interpolation in C#

In the mathematical field of numerical analysis, interpolation is a method of constructing new data points within the range of a discrete set of known data points. In engineering and science, one often has a number of data points, obtained by sampling or experimentation, which represent the values

Read more

Linear Regression in C#

In this article you will find the Linear Regression coded in C#

Read more

Line Numbers In RichTextBox

Line Numbers In RichTextBox

We all use Rich Text Box controls in our C# applications. RichTextBox has many options to format text. However one may ask “how to make RichTextBox show the lines’ numbers on the left side, like in VS or Notepad++ or UltraEdit?”

Read more

Extension Methods

Another cool feature of C# 3.0 is Extension Methods. They allow you to extend an existing type with new functionality, without having to sub-class or recompile the old type. For instance, you might like to know whether a certain string was a number or not. The usual

Read more

Formatting Enumeration Constants

This article is for enumerations in C# and Enum To Readable String

Read more