Click here to Skip to main content
15,891,905 members
Please Sign up or sign in to vote.
1.00/5 (3 votes)
See more:
CAN U SEND EXAMPLE ON USER DEFIND DATA TYPE AND RETURN TYPE SHOULD USER DEFINED DATA TYPE
Posted
Comments
[no name] 23-Jun-12 8:34am    
We are not in your mind, please ask exactly want you want.
Dave Kreskowiak 23-Jun-12 10:05am    
STEP YELLING!! Typing in all caps is the equivilent to walking into a room and screaming at people.

Read this fine book[^].
 
Share this answer
 
I'm not exactly sure what you are asking, but here's an example:
public class UserDefinedType
{
  public UserDefinedType SomeMethod()
  {
    UserDefinedType result = new UserDefinedType();
    return result;
  }
}
 
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