Click here to Skip to main content
15,887,421 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
C#
public string %_Chnage
        {
            get { return _bidQty; }
            set
            {
                _bidQty = value;
               
            }
        }
Posted
Updated 14-May-12 21:39pm
v2
Comments
Uday P.Singh 15-May-12 3:40am    
and what is your question?

That is an invalid name for a property, Have a look here for valid property names:
http://msdn.microsoft.com/en-us/library/aa664670(VS.71).aspx[^]
 
Share this answer
 
No, not possible. But do you know that "%" is pronounced "percent"? And of course, that's a number, not a string!
Hence what about
C#
public decimal PercentChange
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900