InternetUnicodeHTMLCSSScalable Vector Graphics (SVG)Extensible Markup Language (xml) ASP.Net TOCASP.NetMiscellaneous Feature ASP.NET Scripting Visual Basic .NET TOCVB .NET Language ReferencenaVB.Net Elements OperatorArithmetic OperatorCompare OperatorConcatenation OperatorLogical/Bitwise OperatorBit Shift OperatorAssignment Operator Draft for Information Only
Content
VB.NET Miscellaneous Operators
VB.NET Miscellaneous OperatorsThe supporting VB.NET Miscellaneous Operators are ?. (null-conditional), ?() (null-conditional), AddressOf, Await, GetType, Function (expression), If, TypeOf. ?. and ?() null-conditional operatorsTests the value of the left-hand operand for null (Nothing) before performing a member access (?.) or index (?()) operation; returns Nothing if the left-hand operand evaluates to Nothing. Note that in expressions that ordinarily return value types, the null-conditional operator returns a Nullable<T>. These operators help you write less code to handle null checks, especially when descending into data structures. Sometimes you need to take an action on an object that may be null, based on the value of a Boolean member on that object. You can shorten your code and avoid manually checking for null by using the null-conditional operator. The null-conditional operators are short-circuiting. If one operation in a chain of conditional member access and index operations returns Nothing, the rest of the chain’s execution stops. Another use for null-conditional member access is to invoke delegates in a thread-safe way with much less code. See alsoAddressOf OperatorCreates a delegate instance that references the specific procedure. SyntaxAddressOf procedurename Partsprocedurename: Required. Specifies the procedure to be referenced by the newly created delegate. RemarksThe AddressOf operator creates a delegate that points to the sub or function specified by procedurename. When the specified procedure is an instance method then the delegate refers to both the instance and the method. Then, when the delegate is invoked the specified method of the specified instance is called. The AddressOf operator can be used as the operand of a delegate constructor or it can be used in a context in which the type of the delegate can be determined by the compiler. See alsoAwait OperatorYou apply the Await operator to an operand in an asynchronous method or lambda expression to suspend execution of the method until the awaited task completes. The task represents ongoing work. The method in which Await is used must have an Async modifier. Such a method, defined by using the Async modifier, and usually containing one or more Await expressions, is referred to as an async method. Note The Async and Await keywords were introduced in Visual Studio 2012. For an introduction to async programming, see Asynchronous Programming with Async and Await. Typically, the task to which you apply the Await operator is the return value from a call to a method that implements the Task-Based Asynchronous Pattern, that is, a Task or a Task<TResult>. Important For the complete example, see Walkthrough: Accessing the Web by Using Async and Await. You can download the sample from Developer Code Samples on the Microsoft website. The example is in the AsyncWalkthrough_HttpClient project. If Await is applied to the result of a method call that returns a Task(Of TResult), the type of the Await expression is TResult. If Await is applied to the result of a method call that returns a Task, the Await expression doesn't return a value. An Await expression or statement does not block the thread on which it is executing. Instead, it causes the compiler to sign up the rest of the async method, after the Await expression, as a continuation on the awaited task. Control then returns to the caller of the async method. When the task completes, it invokes its continuation, and execution of the async method resumes where it left off. An Await expression can occur only in the body of an immediately enclosing method or lambda expression that is marked by an Async modifier. The term Await serves as a keyword only in that context. Elsewhere, it is interpreted as an identifier. Within the async method or lambda expression, an Await expression cannot occur in a query expression, in the catch or finally block of a Try…Catch…Finally statement, in the loop control variable expression of a For or For Each loop, or in the body of a SyncLock statement. ExceptionsMost async methods return a Task or Task<TResult>. The properties of the returned task carry information about its status and history, such as whether the task is complete, whether the async method caused an exception or was canceled, and what the final result is. The Await operator accesses those properties. If you await a task-returning async method that causes an exception, the Await operator rethrows the exception. If you await a task-returning async method that is canceled, the Await operator rethrows an OperationCanceledException. A single task that is in a faulted state can reflect multiple exceptions. For example, the task might be the result of a call to Task.WhenAll. When you await such a task, the await operation rethrows only one of the exceptions. However, you can't predict which of the exceptions is rethrown. For examples of error handling in async methods, see Try...Catch...Finally Statement. See also
GetType OperatorReturns a Type object for the specified type. The Type object provides information about the type such as its properties, methods, and events. SyntaxGetType(typename) Parameterstypename: The name of the type for which you desire information. RemarksThe GetType operator returns the Type object for the specified typename. You can pass the name of any defined type in typename. This includes the following:
If you want to get the type object of an object variable, use the Type.GetType method. The GetType operator can be useful in the following circumstances:
See alsoFunction ExpressionDeclares the parameters and code that define a function lambda expression. SyntaxFunction ( [ parameterlist ] ) expression - or - Function ( [ parameterlist ] ) [ statements ] End Function Partsparameterlist: Optional. A list of local variable names that represent the parameters of this procedure. The parentheses must be present even when the list is empty. See Parameter List. expression: Required. A single expression. The type of the expression is the return type of the function. statements: Required. A list of statements that returns a value by using the Return statement. (See Return Statement.) The type of the value returned is the return type of the function. RemarksA lambda expression is a function without a name that calculates and returns a value. You can use a lambda expression anywhere you can use a delegate type, except as an argument to RemoveHandler. For more information about delegates, and the use of lambda expressions with delegates, see Delegate Statement and Relaxed Delegate Conversion. Lambda Expression SyntaxThe syntax of a lambda expression resembles that of a standard function. The differences are as follows:
See also
If OperatorUses short-circuit evaluation to conditionally return one of two values. The If operator can be called with three arguments or with two arguments. SyntaxIf( [argument1,] argument2, argument3 ) If Operator Called with Three ArgumentsWhen If is called by using three arguments, the first argument must evaluate to a value that can be cast as a Boolean. That Boolean value will determine which of the other two arguments is evaluated and returned. The following list applies only when the If operator is called by using three arguments. Partsargument1: Required. Boolean. Determines which of the other arguments to evaluate and return. argument2: Required. Object. Evaluated and returned if argument1 evaluates to True. argument3: Required. Object. Evaluated and returned if argument1 evaluates to False or if argument1 is a NullableBoolean variable that evaluates to Nothing. An If operator that is called with three arguments works like an IIf function except that it uses short-circuit evaluation. An IIf function always evaluates all three of its arguments, whereas an If operator that has three arguments evaluates only two of them. The first If argument is evaluated and the result is cast as a Boolean value, True or False. If the value is True, argument2 is evaluated and its value is returned, but argument3 is not evaluated. If the value of the Boolean expression is False, argument3 is evaluated and its value is returned, but argument2 is not evaluated. If Operator Called with Two ArgumentsThe first argument to If can be omitted. This enables the operator to be called by using only two arguments. The following list applies only when the If operator is called with two arguments. Partsargument2: Required. Object. Must be a reference or nullable type. Evaluated and returned when it evaluates to anything other than Nothing. argument3: Required. Object. Evaluated and returned if argument2 evaluates to Nothing. When the Boolean argument is omitted, the first argument must be a reference or nullable type. If the first argument evaluates to Nothing, the value of the second argument is returned. In all other cases, the value of the first argument is returned. See alsoTypeOf OperatorChecks whether the runtime type of an expression's result is type-compatible with the specified type. Syntaxresult = TypeOf objectexpression Is typename result = TypeOf objectexpression IsNot typename Partsresult: Returned. A Boolean value. objectexpression: Required. Any expression that evaluates to a reference type. typename: Required. Any data type name. RemarksThe TypeOf operator determines whether the run-time type of objectexpression is compatible with typename. The compatibility depends on the type category of typename. The following table shows how compatibility is determined.
If the run-time type of objectexpression satisfies the compatibility criterion, result is True. Otherwise, result is False. If objectexpression is null, then TypeOf...Is returns False, and ...IsNot returns True. TypeOf is always used with the Is keyword to construct a TypeOf...Is expression, or with the IsNot keyword to construct a TypeOf...IsNot expression. See also
Source/Reference
©sideway ID: 200800006 Last Updated: 8/6/2020 Revision: 0 Ref: ![]() References
![]() Latest Updated Links
![]() ![]() ![]() ![]() ![]() |
![]() Home 5 Business Management HBR 3 Information Recreation Hobbies 8 Culture Chinese 1097 English 339 Travel 18 Reference 79 Computer Hardware 254 Software Application 213 Digitization 37 Latex 52 Manim 205 KB 1 Numeric 19 Programming Web 289 Unicode 504 HTML 66 CSS 65 SVG 46 ASP.NET 270 OS 431 DeskTop 7 Python 72 Knowledge Mathematics Formulas 8 Set 1 Logic 1 Algebra 84 Number Theory 206 Trigonometry 31 Geometry 34 Calculus 67 Engineering Tables 8 Mechanical Rigid Bodies Statics 92 Dynamics 37 Fluid 5 Control Acoustics 19 Natural Sciences Matter 1 Electric 27 Biology 1 |
Copyright © 2000-2025 Sideway . All rights reserved Disclaimers last modified on 06 September 2019