VB.net Module

本文介绍如何创建和使用模块来组织代码。通过实例演示了如何在模块中定义公共变量及函数,并在应用程序中调用这些资源。适用于需要管理大量函数、子程序或变量的复杂应用。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

In this tutorial, we cover how to create a module, store information inside a module and then access that information in your application. A module can be used to store functions, subs or even variables to sort out your code so that you can access things more easily. If you have a sophisticated application where you have to store a lot of functions, subs or variables then it would be useful to sort them into different categories using modules. A module is differen t to a class because all of the members of a module are shared and a module does not have a consutrctor, meaning you can not create an instance of a module.

Module Code

Module functions

    Public bla As Integer = 10
    Public bla2 As Integer = 20

    Public Function addnumbers(ByVal number1 As Integer, ByVal number2 As Integer)
        Return number1 + number2
    End Function

End Module

Code

Public Class Form1

    Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
        TextBox3.Text = addnumbers(bla, bla2)
    End Sub

    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
        MessageBox.Show(addnumbers(TextBox1.Text, TextBox2.Text))
        MessageBox.Show(functions.addnumbers(TextBox1.Text, TextBox2.Text))
    End Sub

End Class
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值