Text Reader and Text Writer in C# is a tutorial which helps you to learn how to read and write text files in C# using the steamreader and streamwriter class. These Streamreader and streamwriter classes are derived from the base classes TextReader and TextWriter. The author lists you the methods such as Write(), WriteLine(), ReadLine(), Read() of the classes TextReader and TextWriter which are used to perform read and write operations.
PyCDep is a tool to analyze include dependencies between files in C and C++ programs. PyCDep itself is written in python. It dumps all the facts in a prolog database which can be queried. Visualization is possible by dumping graphviz (.dot) files.
Create Dynamic ASP.NET Excel Workbooks In C# is a web based article in which author discusses about generating excel work book using C# in ASP.NET applications. Here author explains about the method CreateExcelWorkbook and GenerateCSVReport which...
I needed to write a Python script for a "tail -f" that displays log entries from multiple files in a given directory. The display had to be in chronological order, the first column of each log file being timestamp of the log. It should...
An XML API for Ruby written in C, using only Ruby native data types internally. Parses/generates XML, automatically pretty printing and en-/de- coding characters. Transmutates XML attributes to/from objects. Find node paths via strings or regex...
A beginner's guide to threading in C# is an easy to learn tutorial in which the author discusses about the principles of multi threading, which helps in executing multiple operations at a same time. The author offers details about how the multi...
An SVG framework in C# and an SVG-GDI+ bridge is an article through which programmers can gain knowledge about SvgNet, which is a C# library that facilitates the process of creating SVG images. Here the author explains about various classes that...
Boxing and Unboxing of Value Types in C#: What You Need to Know? is a web based tutorial in which author elaborates the concepts of boxing and unboxing value types. The author also explains the problem that occur while programming boxing and...
Converting Visio files in ASP.NET is an article through which beginners can learn about the procedure that have to be adapted to transform visio files into .jpg files with the help of ASP.NET applications. The author explains this method with...
Creating and Using Custom Attributes in C# is a web based tutorial in which the author gives you the method for definining your own attributes in C#. Attributes are declared for the methods and properties of the class. The author gives you the... |