Design-Time Attributes of Custom Controls is an article through which you can know about how to set various attributes for the custom controls. Attributes are similar to the keywords that contains information about the property, class, method etc., S
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 sample
Getting .NET class info with Reflection is a web based tutorial through which programmers can gather information about reflection class, which helps in detecting and collecting objects used in an specified application during runtime. Here the author
This is an ASP.NET article which helps you to implement globalization support for ASP.NET pages through attributes and reflection. It is necessary to define the GlobalizationMod HttpModule to perform this operation. The author gives you the sample co
Using Reflection Emit to Cache .NET Assemblies is an useful tutorial for the .NET pogrammers and the webmasters through which they can get guidelines for caching the .NET assemblies with the help of reflection emits. Here author discusses about vario
This is a simple unit testing solution that can be used to execute unit tests when building applications. This program is developed with C#. Customized attributes and reflection related functionalities are provided with this software. This program is
This article offers the details about attributes. The basic topics discusses in this article is how to build and use custom attributes in Visual Basic.NET. Attribute works on independent language and it is inherited from the system.attribute class wh
Understanding User Controls -part 2 is an article in which the author discusses about how reflection can be used to find the type, properties and methods of user controls that are compiled using the JIT compilers. The author defines reflection as th
This article offers useful and important tips to the developers about attributes. The topics demonstrated about attribute in this article are custom attribute, usage of attribute, attribute target, multiple inheritence of attribute in codes, declarat
This tutorial instructs the users how to test a cloned object using reflection. The author says .NET framework provides the IClone hence the users can easily implement their own clone() and test it by using System.Reflection object. To perform this a |