Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 950 Bytes

translating-to-visual-basic-from-java.md

File metadata and controls

28 lines (16 loc) · 950 Bytes
title description ms.assetid ms.topic ms.date
Translating to Visual Basic from Java
Translating to Visual Basic from Java
f2858439-bd8c-4f4d-bf0b-d9e31013b230
article
05/31/2018

Translating to Visual Basic from Java

Visual Basic uses Automation-compatible data types as its internal data types. Thus, Java data types that are Automation-compatible are also compatible with Visual Basic. Data types that are not Automation-compatible may not be able to be converted to Visual Basic.

Java and Visual Basic differ slightly in how they represent properties. In Java, properties are represented as a set of accessor functions, one that sets the property value and one that retrieves the property value. In Visual Basic, properties are represented as a single item that can be used to retrieve or set the property value.

Related topics

Translating to Visual Basic