Created
April 26, 2014 15:07
-
-
Save Fhernd/11322431 to your computer and use it in GitHub Desktop.
Listado de los miembros de la clase Object en C#.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// ===++=== | |
// | |
// OrtizOL | |
// | |
// ===--=== | |
/*============================================================ | |
// | |
// Clase: Object.cs | |
// | |
// Propósito: Miembros de la clase Object. | |
// | |
============================================================*/ | |
public class Object | |
{ | |
public Object(); | |
public extern Type GetType(); | |
public virtual bool Equals (object obj); | |
public static bool Equals (object objA, object objB); | |
public static bool ReferenceEquals (object objA, object ojbB); | |
public virtual int GetHashCode(); | |
public virtual string ToString(); | |
protected virtual void Finalize(); | |
protected extern object MemberwiseClone(); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment