Often a function written in C for Python needs to return nothing in particular -- a "return None" in Python terms; but _don't_ just "return Py_None" from C, as that will mess up reference counts!
Advertisement
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...
Find Files in C# is a web based tutorial in which author explains about the procedure for searching the files in the hard disk using .NET application, which is written in C#. Here the author uses System.IO namespace for retrieving the classes from...
How do I create a string in C# is an article in which author demonstrates the procedure for constructing string using string builder. Here the author offers a code snippet, which helps in performing the above said process. ASP.NET programmers and...
Overloading Strings in C# is a web based tutorial in which author discusses about using string in C#. The author describes the method of using SuperStringFunction() in string processing. The author provides code for performing various operation in...
Testing a Full-Text Search Stemmer in C# is an informative article in which the author discusses about testing the output of the stemmer component in C#. You can use the stemmer component for FREETEXT queries and CONTAINS queries using the...
Usage of Operator Overloading in C# is a tutorial for the beginners to know about the operator overloading feature in C#. Operator overloading is an object oriented feature which does not affect the actual meaning of the in-built operators of C#....
XML transformation using Xslt in C# is an ASP.NET tutorial in which author elaborates the step by step procedure for XML transforming by using Xslt, which helps in transferring data into several formats.The author gives procedure for loading XML...
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...
Exception Handling in C# is a tutorial which gives the solution to catch the run time errors and to eliminate it through exception. There are many standard exceptions which is available in ASP.NET framework. The author describes about the main...
Handling Exceptions in C# is a web based tutorial through which the programmers can gather details about error handling by using C#. The author describes the procedure to create a own error handling class, which can be called as Exception class....
Working with Arrays in C# is a web based tutorial in which author demonstrates about the process of working with arrays in C#. The author explains this method with example source code in C# and allows the users to copy it, programmers can make use...
A simple calculator that works with whole numbers written in C/Python.
The purpose of this implementation is only to show how a simple extension C/Python that can help people who are starting with C/Python.
In this cookbook...
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...
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...
FTP Server in C# is a simple article in which author deals with FTP server in C#, which has multi threading facility to handle multiple client. The author describes elaborately about the execution process of FTP model with the help of example. The...
Handling optional parameters in C# is an article which provides you some information about using the optional parameters in the user defined functions of C#. You can accomplish this operation by creating a class that encapsulates all the possible...
Optional Parameters in C# is a tutorial which provides you some information about using the optional parameters in the functions of C#. The author explains the procedure with sample programs. This is a simple and easy to learn tutorial.
Properties in C# : A new cover on old book is a tutorial which gives you more information about the properties in C#. Properties in C# helps you to get and put the values in fields of a class and thus it protects the fields. These properties... |