Example of Structure Conversion in C #

Source: Internet
Author: User
Example of Structure Conversion in C #

Structconversion. CS
Using System;

Struct Romannumeral
... {
Public Romannumeral ( Int Value)
... {
This. Value=Value;
}
Static   Public   Implicit   Operator Romannumeral ( Int Value)
... {
Return NewRomannumeral (value );
}
Static   Public   Implicit   Operator Romannumeral (binarynumeral binary)
... {
Return NewRomannumeral ((Int) Binary );
}
Static   Public   Explicit   Operator   Int (Romannumeral Roman)
... {
ReturnRoman. value;
}
Static   Public   Implicit   Operator   String (Romannumeral Roman)
... {
Return("Conversion not yet implemented";
}
Private   Int Value;
}

Struct Binarynumeral
... {
Public Binarynumeral ( Int Value)
... {
This. Value=Value;
}
Static   Public   Implicit   Operator Binarynumeral ( Int Value)
... {
Return NewBinarynumeral (value );
}
Static   Public   Implicit   Operator   String (Binarynumeral binary)
... {
Return("Conversion not yet implemented";
}
Static   Public   Explicit   Operator   Int (Binarynumeral binary)
... {
Return(Binary. value );
}

Private   Int Value;
}

Class Test
... {
Static   Public   Void Main ()
... {
Romannumeral Roman;
Roman =   10 ;
Binarynumeral binary;
// Perform a conversion from a romannumeral to
// Binarynumeral:
Binary = (Binarynumeral )( Int ) Roman;
// Performs a conversion from a binarynumeral to a romannumeral.
// No cast is required:
Roman = Binary;
Console. writeline (( Int ) Binary );
Console. writeline (Binary );
}
}

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.