TECHNOLOGIES
FORUMS
JOBS
BOOKS
EVENTS
INTERVIEWS
Live
MORE
LEARN
Training
CAREER
MEMBERS
VIDEOS
NEWS
BLOGS
Sign Up
Login
No unread comment.
View All Comments
No unread message.
View All Messages
No unread notification.
View All Notifications
Answers
Post
An Article
A Blog
A News
A Video
An EBook
An Interview Question
Ask Question
Forums
Monthly Leaders
Forum guidelines
Lalit Bhatt
1.1k
262
3.9k
modify dll file in asp.net without source code
Jan 14 2021 7:24 AM
I have dll file in my project without source code of dll file now I want some changes that file how I change it..
Please help me.
this is the code of dll I want change date in this code
namespace
ESPLHelper
{
using
System;
public
sealed
class
Config
{
private
const
string
version =
"EH.L.01"
;
private
const
string
ServerDetails =
"Endeavour"
;
private
const
string
ExpireDate =
"2020-12-31"
;
public
const
char
ColumnSeparator =
'~'
;
public
const
char
RowSeparator =
'`'
;
public
const
char
TableSeparator =
'^'
;
private
Config()
{
}
public
static
bool
Authentication()
{
try
{
return
(Convert.ToDateTime(
"2020-12-31"
) >=DateTime.Today.Date);
}
catch
{
return
true
;
}
}
}
}
Reply
Answers (
1
)
Website development and engineering forum
Call api from mvc with post data having callback url asp.net mvc