A property, indexer or dynamic member access may not be passed as an out or ref parameter - C#
Формулировка задачи:
ошибка : A property, indexer or dynamic member access may not be passed as an out or ref parameter
код :
Date obj = new Date(); if (DateTime.TryParse(maskedTextBox1.Text, out obj.now)) { } public class Date { public DateTime now { get { return Now; } set { Now = value; } } private DateTime Now; }
Решение задачи: «A property, indexer or dynamic member access may not be passed as an out or ref parameter»
textual
Листинг программы
using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace WindowsFormsApplication5 { public partial class Form1 : Form { public Form1() { InitializeComponent(); this.Load+=new EventHandler(Form1_Load); button1.Click+=new EventHandler(button1_Click); } private void Form1_Load(object sender, EventArgs e) { } private void button1_Click(object sender, EventArgs e) { Date obj = new Date(); DateTime temp = DateTime.Now; if (DateTime.TryParse(maskedTextBox1.Text, out temp)) { obj.now = temp; } } } public class Date { public DateTime now { get { return Now; } set { Now = value; } } private DateTime Now; } }
ИИ поможет Вам:
- решить любую задачу по программированию
- объяснить код
- расставить комментарии в коде
- и т.д