- C Sharp (bahasa pemrograman)
- Sharp Corporation
- Tanda kunci
- Tabel periodik
- Billy Sharp
- Ademola Lookman
- Bumi
- Daftar drama Korea Selatan
- Serangan bom atom Hiroshima dan Nagasaki
- Anarkisme
- C Sharp 4.0
- C Sharp (programming language)
- 0-4-4-0
- Zero sharp
- C-sharp major
- C-sharp minor
- Key signature
- Cambrian Railways 4-4-0 locomotives
- C Sharp syntax
- C♯ (musical note)
c sharp 4 0
C Sharp 4.0 GudangMovies21 Rebahinxxi LK21
C# 4.0 is a version of the C# programming language that was released on April 11, 2010. Microsoft released the 4.0 runtime and development environment Visual Studio 2010. The major focus of C# 4.0 is interoperability with partially or fully dynamically typed languages and frameworks, such as the Dynamic Language Runtime and COM.
Features
The following new features were added in C# 4.0.
= Dynamic member lookup
=A new pseudo-type dynamic is introduced into the C# type system. It is treated as System.Object, but in addition, any member access (method call, field, property, or indexer access, or a delegate invocation) or application of an operator on a value of such type is permitted without any type checking, and its resolution is postponed until run-time. This is known as duck typing. For example:
Dynamic method calls are triggered by a value of type dynamic as any implicit or explicit parameter (and not just a receiver). For example:
Dynamic lookup is performed using three distinct mechanisms: COM IDispatch for COM objects, IDynamicMetaObjectProvider DLR interface for objects implementing that interface, and reflection for all other objects. Any C# class can therefore intercept dynamic calls on its instances by implementing IDynamicMetaObjectProvider.
In case of dynamic method and indexer calls, overload resolution happens at run-time according to the actual types of the values passed as arguments, but otherwise according to the usual C# overloading resolution rules. Furthermore, in cases where the receiver in a dynamic call is not itself dynamic, run-time overload resolution will only consider the methods that are exposed on the declared compile-time type of the receiver. For example:
Any value returned from a dynamic member access is itself of type dynamic. Values of type dynamic are implicitly convertible both from and to any other type. In the code sample above this permits GetLength function to treat the value returned by a call to Length as an integer without any explicit cast. At run time the actual value will be converted to the requested type.
= Covariant and contravariant generic type parameters
=Generic interfaces and delegates can have their type parameters marked as covariant or contravariant using keywords out and in respectively. These declarations are then respected for type conversions, both implicit and explicit, and both compile time and run time. For example, the existing interface IEnumerable
Therefore, any class that implements IEnumerable
For contravariance, the existing interface IComparer
Therefore, any class that implements IComparer
= Optional ref keyword when using COM
=The ref keyword for callers of methods is now optional when calling into methods supplied by COM interfaces. Given a COM method with the signature
the invocation can now be written as either
or
= Optional parameters and named arguments
=C# 4.0 introduces optional parameters with default values as seen in Visual Basic and C++. For example:
In addition, to complement optional parameters, it is possible explicitly to specify parameter names in method calls, allowing the programmer selectively to pass any subset of optional parameters for a method. The only restriction is that named parameters must be placed after the unnamed parameters. Parameter names can be specified for both optional and required parameters, and can be used to improve readability or arbitrarily to reorder arguments in a call. For example:
Optional parameters make interoperating with COM easier. Previously, C# had to pass in every parameter in the method of the COM component, even those that are optional. For example:
With support for optional parameters, the code can be shortened as
Which, due to the now optional ref keyword when using COM, can further be shortened as
= Indexed properties
=Indexed properties (and default properties) of COM objects are now recognized, but C# objects still do not support them.
References
External links
Burrows, Chris (2010). "C# 4.0 - New C# Features in the .NET Framework 4". Microsoft. Retrieved 2023-07-14.
C# 4.0 Language Specification