At 09:48 PM 11/25/2004, you wrote: >worin liegt der Unterschied zwischen Type.GetType["int"]; >und typeof(int); ? > >Wenn ich die jeweiligen Resultate später gegen >typeof(int) teste, bekomme ich bei .GetType true und >bei typeof false. An sich ist typeof() nix anderes als ein C# Shortcut auf .GetType() Methode= eines beliebigen Objekts. Chris