System.Object Class
Information   Base Types   Related Resources

Supports all classes in the .NET Framework class hierarchy and provides low-level services to derived classes. This is the ultimate superclass of all classes in the .NET Framework; it is the root of the type hierarchy.

  • Namespace: System
  • First seen in: .NET v1.0.3705
  • Last seen in: .NET v1.1.4322
  • Last changed in: .NET v1.0.3705
  • Assembly: mscorlib.dll

  • View this type on MSDN
  • View this type on WinFX 247
    Articles (274)Discussions (4866)MembersRotorChanges
    Articles

    Page: 1234567891011
    .NET - More on Generics in the CLR
    MSDN
    More on Generics in the CLR
    .NET Anatomy - Structured Exception Handling in .NET
    DotNetJunkies
    This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features.
    .NET Anatomy – Structured Exception Handling in .NET
    DotNetJunkies
    This article discusses structured exception handling (SEH), a service built into the core of .NET and available to all languages supported by it. Since the infrastructure for this service is built-in, there is very little code required to take full advantage of these features.
    .NET Connector for Microsoft Outlook
    The Code Project
    Export Microsoft Outlook data using XML DataSets and the Outlook COM Object Library.
    .NET Interop: Get Ready for Microsoft .NET by Using Wrappers to Interact with COM-based Applications
    MSDN
    Very soon, the development of Microsoft .NET applications will require interaction between those apps and existing COM components on both the client and the server. The .NET Framework has made provisions for this interaction by implementing various wrappers for COM objects to allow exposure of their properties and methods to .NET components. These wrappers will make it easy to make the connection between COM and .NET.
    .NET MD5 Class Library
    The Code Project
    a MD5 Class Library for .NET supporting advanced features like Random Salt values embedded into the MD5 hash.
    .NET Remoting - The Interface Approach
    C# Help
    In this article, we will create a remote object, and access this object using an interface. This method is important when creating a physical separation between business tier and consumer code. In traditional Remoting approaches, to access a remote object, you need a copy of that object on the client machine. With this approach, the metadata is split into a separate library that can be copied to the client machine.
    A Portal for My Data
    MSDN
    With it comes to retrieving data in an n-tier application. We often design our systems in a way that forces us to figure out a different way to get each type of data, calling a different service, object, or method each time. To get customer data, we call the GetCustomer method of the CustomerService. To get product data, we call the Product method of a WebProduct service. This can get confusing!
    A Remedy for DataGrid Vertigo
    DotNetJunkies
    The AlternatingItemStyle can be a wonderful thing. But in many cases I found that I would start to get a feeling like vertigo if I scrolled the page up or down. So I thought back to my days in Manhattan in the financial industry and remembered how I used to prepare reports to be viewed on screen. I alternated the colors of the rows, but I did it every three or five rows (depending on the width of the report, the content of the report, or my own aesthetic taste).
    Accessing Data Using System.OleDb
    C# Help
    This simple application demonstates several aspects of object-oriented programming in C#. It builds a simple class called "Batters" with several fields and then populates their values by retrieving data from an Access Database. In my research on how to retrieve data using System.OleDb I found that there wasn't any one help file that demonstated how to put it all together. I hope this helps.
    Accessing Schemas
    C# Corner
    OleDb data provider's connection class (OleDbConnection) provides a method GetOleDbSchemaTable that returns a database schema.
    Add Confirmation After Controls Validation on Client
    http://aspalliance.com/
    Add a confirmation dialog to a web form after performing server control validation.
    Add Professional Quality Reports to Your Application with Visual Studio .NET
    MSDN
    Crystal Reports for Visual Studio .NET provides a comprehensive reporting solution for .NET developers that is thoroughly integrated with both the Visual Studio .NET IDE and the .NET Framework. Crystal Reports supports ADO.NET, XML Web Services, and ASP.NET server controls and caching. It also integrates seamlessly with the Visual Studio .NET Server Explorer, toolbox, and design environment. It has a rich programming model and flexible options for customizing and deploying reports. These major features and others covered here take the drudge work out of data representation in your own applications.
    Adding a Blank Row to a DataGrid (Used to INSERT rather than UPDATE)
    DotNetJunkies
    In this article we will be illustrating one way to add a blank row to a DataGrid. Why would you want to do this? Who knows, maybe to enable a user to add a new record. This article will show you how to add a new row to a DataGrid by manipulating its DataSource - in this example a DataTable. Note that we will be simulating saving the new item back to the database.
    Adding Blank Rows to a DataGrid
    DotNetJunkies
    In one application I had the requirement to add a blank row after every 10 rows in a DataGrid rather than use paging. There is no in-built way to do this with the DataGrid, but it can be easily done by modifying the DataTable that the DataGrid is bound to and by writing some code in the DataGrids ItemDataBound event. This how-to article will describe how it is done.
    Adding Items to a DataView and DataTable
    DotNetJunkies
    In this article we'll be demonstrating how to add a new row to both a DataTable and a DataView. In the first part of this article we will briefly discuss the differences between a DataView and DataTable, then we'll give a code example and analysis of how to add a new item to each. The code will demonstrate how effecting one, has a direct effect on the other.
    Adding Items to a DataView and DataTable
    DotNetJunkies
    In this article we'll be demonstrating how to add a new row to both a DataTable and a DataView. In the first part of this article we will briefly discuss the differences between a DataView and DataTable, then we'll give a code example and analysis of how to add a new item to each. The code will demonstrate how effecting one, has a direct effect on the other.
    ADO.NET 101: SQL Connection
    The Code Project
    A tutorial on connecting to SQL 2000 Server
    Allowing Users to Upload Multiple Files at Once
    DotNetJunkies
    This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server.
    Allowing Users to Upload Multiple Files at Once
    DotNetJunkies
    This article demonstrates how to allow users to upload multiple files from thier computer (the client) to your server. Specifically, this article will demonstrate how to set up a page that has 5 HtmlInputFile controls where a user can choose 5 images to upload. Only .jpg and .gif extensions will be accepted on the server and each one will be saved to a different directory::so any image that has the extension .jpg will be saved to the jpgs direcory and .gif will be saved to the gifs directory and everything else isn't saved at all.
    An Intro to Destructors in C#
    The Code Project
    This article gives an overview of the destructor in C#. It covers basics, behaviour of destructors in inheritance scenario, how .NET framework manages the destructor internally. It contains some sample codes, along with the genaral FAQs about the destructor.
    An RSS 2.0 Blog Reader Written In MyXaml
    The Code Project
    An RSS 2.0 Blog Reader Written in MyXaml
    Array Types in .NET
    MSDN
    Arrays are mechanisms that allow you to treat several items as a single collection. The Microsoft® .NET Common Language Runtime (CLR) supports single-dimensional arrays, multidimensional arrays, and jagged arrays (arrays of arrays). All array types are implicitly derived from System.Array, which itself is derived from System.Object. This means that all arrays are always reference types which are allocated on the managed heap, and your app's variable contains a reference to the array and not the array itself.
    Ask the DotNetJunkies: Dynamically Populating An ASP.NET ListBox
    DotNetJunkies
    When dynamically populating a list box using listbox.items.add, asp.net generates the same string for the HTML tag OPTION's value and text. In the past, I would put a table key in the value while filling the HTML text with various information. What are methods for splitting the listbox attributes? The .net framework examples do not address this type of dynamic filling of the listbox. Thanks, Ken (your interview on MSDN was great)
    ASP.NET 2.0's Client Callback Feature
    DotNetJunkies
    One of the most overlooked features of ASP.NET 2.0, part of Visual Studio 2005 or "Whidbey", is the Client Callback feature. This feature allows you to programmatically call server-side methods through client-side JavaScript code without the need for posting back the page. This article describes how to use the Client Callback feature to implement your own callback scenario and introduces the new TreeView control that has this feature built in.
    Ad
    MBR BootFX
    Best-of-breed application framework for .NET projects, developed by Matthew Baxter-Reynolds and MBR IT
     
     Copyright © Matthew Baxter-Reynolds 2001-2008. '.NET 247 Software Development Services' is a trading style of MBR IT Solutions Ltd.
    Contact Us - Terms of Use - Privacy Policy - www.dotnet247.com