אשכול: עזרה ב C#
View Single Post
ישן 22-09-06, 10:51   # 8
Elad-A
הוסטסניון
 
מיני פרופיל
תאריך הצטרפות: May 2006
הודעות: 1,987

Elad-A לא מחובר  

לא ממש הבנתי אותך אבל ניסיתי משהו אחר והוא לא עובד (אין שגיאות)

PHP קוד:

using System
;

namespace testConsole
{
    public class 
Test
    
{
        public static 
void Main()
        {
            
string A;
            
string B;
            
Console.WriteLine("Test Page By Elad-A");
            
Console.Write("Enter Your Name: ");
            
Console.ReadLine();
            
Console.Write("Enter Your Last Name: ");
            
Console.ReadLine();

            if (
== "" || == "")
            {
                
Console.Write("Empty Fields");
            }
            else
            {
                
Console.Write("Hello, {0} (1)"A,B);
            }
            
Console.Read();
        }
    }

זה לא מציג את ה last name (משתנה B)
  Reply With Quote