vb.net转c#

wall86144 2004-11-30 10:17:15
dim aa() as double
public property AA(byval i as inter) as double
{
get
return aa(i)
end get
set(byval value as double)
aa(i)=value
end set
}
怎么转换成c# 参数i怎么传进去
...全文
106 8 打赏 收藏 转发到动态 举报
AI 作业
写回复
用AI写文章
8 条回复
切换为时间正序
请发表友善的回复…
发表回复
wall86144 2004-11-30
  • 打赏
  • 举报
回复
up
melonlee 2004-11-30
  • 打赏
  • 举报
回复
学习~
wall86144 2004-11-30
  • 打赏
  • 举报
回复
我要在外面可以显示的是this.AA[1]
这个样式的
wall86144 2004-11-30
  • 打赏
  • 举报
回复
hbxtlhx(下着春雨的天) :
假如我里面有多个这样的属性
都可以这样写吗?
北京的雾霾天 2004-11-30
  • 打赏
  • 举报
回复
我改了一下,大致上修改成C#也就是如下的样子:
private double[] aa;

public double this[int index]
{
get
{
return aa[index];
}
set
{
aa[index] = value
}
}
北京的雾霾天 2004-11-30
  • 打赏
  • 举报
回复
这里有一个例子,你参考一下:

using System;
class IndexerClass
{
private int [] myArray = new int[100];
public int this [int index] // Indexer declaration
{
get
{
// Check the index limits.
if (index < 0 || index >= 100)
return 0;
else
return myArray[index];
}
set
{
if (!(index < 0 || index >= 100))
myArray[index] = value;
}
}
}
北京的雾霾天 2004-11-30
  • 打赏
  • 举报
回复
你的是一个索引的定义,在C#的MSDN里找一下索引的用法就OK了,索引是可以传一个参数进去的.
wall86144 2004-11-30
  • 打赏
  • 举报
回复
up
这是第六版的介绍《ASP.NET 4入门经典:涵盖C#VB.NET(第6版)》内容简介:ASP.NET是.NET Framework的一部分,用于构建内容丰富的动态Web站点。其最新的版本ASP.NET 4对上一版进行了许多改进,包括增强了Web窗体,并添加了jQuery的支持。《ASP.NET 4入门经典:涵盖C#VB.NET(第6版)》循序渐进,逐步讲解了如何使用ASP.NET 4构建内容丰富的Web站点,并提供了大量使用C#和VB的示例。通过实际动手练习,您将学到关于构建Web站点的第一手信息,同时能够深刻理解在浏览器中查看ASP.NET 4页面时,后台到底发生了什么。 这是第七版,也就是本源码书的介绍 The ultimate programming guide to ASP.NET 4.5, by popular author and Microsoft MVP Imar Spaanjaars Updated for ASP.NET 4.5, this introductory book is filled with helpful examples and contains a user-friendly, step-by-step format. Written by popular author and Microsoft ASP.NET MVP Imar Spaanjaars, this book walks you through ASP.NET, Microsoft's technology for building dynamically generated web pages. This edition retains the highly accessible approach to building the Planet Wrox website example, an online community site featuring product reviews, picture sharing, bonus content for registered users, and more. Contains the comprehensive guide to the latest technology additions to ASP.NET 4.5 Shows how to build basic ASP.NET web pages and configure their server Includes information on how to add features with pre-built server controls Reveals how to design pages and make them consistent Contains the information needed for getting user input and displaying data Beginning ASP.NET 4.5 in C# and VB uses Spaanjaars's distinct writing style to put you at ease with learning ASP.NET 4.5.

111,111

社区成员

发帖
与我相关
我的任务
社区描述
.NET技术 C#
社区管理员
  • C#
  • AIGC Browser
  • by_封爱
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告

让您成为最强悍的C#开发者

试试用AI创作助手写篇文章吧