(C#): What is the difference between an Interfaceand an Abstract Class?
In C#, an interface is used to definethe outer abilities of a class. An abstract class is used to definethe actual identity of a class and it is used as the object or the same type. In C#, an interface is used if various implementations only shared method signatures.
(C#): What are Genericsin C#?
A feature in C# that allows defining a classor methodwith type as a parameter. They allow for designing classes and methods whose types are specified only at the time of declaration and instantiation.
(C#): What are the 3 major usesfor the using keyword?
The usingkeyword has three major uses:
defines a scopeat the end of which an object will be disposed.
creates an aliasfor a namespace or importstypes defined in other namespaces.
usingstatic directiveimports the members of a single class.
Author
geschw66
ID
350422
Card Set
C# QUESTIONS asked at Charter/Spectrum
Description
Questions asked at the Spectrum/Charter screening interview.